示例#1
0
        internal static OrderItemResourceData DeserializeOrderItemResourceData(JsonElement element)
        {
            IDictionary <string, string> tags          = default;
            AzureLocation             location         = default;
            ResourceIdentifier        id               = default;
            string                    name             = default;
            ResourceType              type             = default;
            SystemData                systemData       = default;
            OrderItemDetails          orderItemDetails = default;
            AddressDetails            addressDetails   = default;
            Optional <DateTimeOffset> startTime        = default;
            string                    orderId          = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("tags"))
                {
                    Dictionary <string, string> dictionary = new Dictionary <string, string>();
                    foreach (var property0 in property.Value.EnumerateObject())
                    {
                        dictionary.Add(property0.Name, property0.Value.GetString());
                    }
                    tags = dictionary;
                    continue;
                }
                if (property.NameEquals("location"))
                {
                    location = new AzureLocation(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("id"))
                {
                    id = new ResourceIdentifier(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("name"))
                {
                    name = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("type"))
                {
                    type = new ResourceType(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("systemData"))
                {
                    systemData = JsonSerializer.Deserialize <SystemData>(property.Value.ToString());
                    continue;
                }
                if (property.NameEquals("properties"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    foreach (var property0 in property.Value.EnumerateObject())
                    {
                        if (property0.NameEquals("orderItemDetails"))
                        {
                            orderItemDetails = OrderItemDetails.DeserializeOrderItemDetails(property0.Value);
                            continue;
                        }
                        if (property0.NameEquals("addressDetails"))
                        {
                            addressDetails = AddressDetails.DeserializeAddressDetails(property0.Value);
                            continue;
                        }
                        if (property0.NameEquals("startTime"))
                        {
                            if (property0.Value.ValueKind == JsonValueKind.Null)
                            {
                                property0.ThrowNonNullablePropertyIsNull();
                                continue;
                            }
                            startTime = property0.Value.GetDateTimeOffset("O");
                            continue;
                        }
                        if (property0.NameEquals("orderId"))
                        {
                            orderId = property0.Value.GetString();
                            continue;
                        }
                    }
                    continue;
                }
            }
            return(new OrderItemResourceData(id, name, type, systemData, tags, location, orderItemDetails, addressDetails, Optional.ToNullable(startTime), orderId));
        }