internal static ApiListResultCategoryApiModel DeserializeApiListResultCategoryApiModel(JsonElement element) { Optional <long> count = default; Optional <IReadOnlyList <CategoryApiModel> > 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 <CategoryApiModel> array = new List <CategoryApiModel>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(CategoryApiModel.DeserializeCategoryApiModel(item)); } data = array; continue; } if (property.NameEquals("totalCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } totalCount = property.Value.GetInt64(); continue; } } return(new ApiListResultCategoryApiModel(Optional.ToNullable(count), Optional.ToList(data), Optional.ToNullable(totalCount))); }
internal static ApiResultCategoryApiModel DeserializeApiResultCategoryApiModel(JsonElement element) { Optional <CategoryApiModel> data = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("data")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } data = CategoryApiModel.DeserializeCategoryApiModel(property.Value); continue; } } return(new ApiResultCategoryApiModel(data.Value)); }
internal static ApiListResultCategoryApiModel DeserializeApiListResultCategoryApiModel(XElement element) { long?count = default; long?totalCount = default; IReadOnlyList <CategoryApiModel> 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 <CategoryApiModel>(); foreach (var e in element.Elements("CategoryApiModel")) { array.Add(CategoryApiModel.DeserializeCategoryApiModel(e)); } data = array; return(new ApiListResultCategoryApiModel(count, data, totalCount)); }