Example #1
0
        internal static ApiListResultDeliveryNoteProductInfoApiModel DeserializeApiListResultDeliveryNoteProductInfoApiModel(JsonElement element)
        {
            Optional <long> count = default;
            Optional <IReadOnlyList <DeliveryNoteProductInfoApiModel> > data = default;
            Optional <long> totalCount = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("count"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    count = property.Value.GetInt64();
                    continue;
                }
                if (property.NameEquals("data"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    List <DeliveryNoteProductInfoApiModel> array = new List <DeliveryNoteProductInfoApiModel>();
                    foreach (var item in property.Value.EnumerateArray())
                    {
                        array.Add(DeliveryNoteProductInfoApiModel.DeserializeDeliveryNoteProductInfoApiModel(item));
                    }
                    data = array;
                    continue;
                }
                if (property.NameEquals("totalCount"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    totalCount = property.Value.GetInt64();
                    continue;
                }
            }
            return(new ApiListResultDeliveryNoteProductInfoApiModel(Optional.ToNullable(count), Optional.ToList(data), Optional.ToNullable(totalCount)));
        }
Example #2
0
        internal static ApiListResultDeliveryNoteProductInfoApiModel DeserializeApiListResultDeliveryNoteProductInfoApiModel(XElement element)
        {
            long?count      = default;
            long?totalCount = default;
            IReadOnlyList <DeliveryNoteProductInfoApiModel> data = default;

            if (element.Element("count") is XElement countElement)
            {
                count = (long?)countElement;
            }
            if (element.Element("totalCount") is XElement totalCountElement)
            {
                totalCount = (long?)totalCountElement;
            }
            var array = new List <DeliveryNoteProductInfoApiModel>();

            foreach (var e in element.Elements("DeliveryNoteProductInfoApiModel"))
            {
                array.Add(DeliveryNoteProductInfoApiModel.DeserializeDeliveryNoteProductInfoApiModel(e));
            }
            data = array;
            return(new ApiListResultDeliveryNoteProductInfoApiModel(count, data, totalCount));
        }