|
| 1 | +namespace SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop.Models |
| 2 | +{ |
| 3 | + /// <summary> |
| 4 | + /// <para>表示 [GET] /authorization/{version}/category_assets 接口的响应。</para> |
| 5 | + /// </summary> |
| 6 | + public class AuthorizationGetCategoryAssetsResponse : TikTokShopResponse<AuthorizationGetCategoryAssetsResponse.Types.Data> |
| 7 | + { |
| 8 | + public static class Types |
| 9 | + { |
| 10 | + public class Data |
| 11 | + { |
| 12 | + public static class Types |
| 13 | + { |
| 14 | + public class CategoryAsset |
| 15 | + { |
| 16 | + public static class Types |
| 17 | + { |
| 18 | + public class Category |
| 19 | + { |
| 20 | + /// <summary> |
| 21 | + /// 获取或设置类目 ID。 |
| 22 | + /// </summary> |
| 23 | + [Newtonsoft.Json.JsonProperty("id")] |
| 24 | + [System.Text.Json.Serialization.JsonPropertyName("id")] |
| 25 | + [System.Text.Json.Serialization.JsonNumberHandling(System.Text.Json.Serialization.JsonNumberHandling.AllowReadingFromString)] |
| 26 | + public int CategoryId { get; set; } |
| 27 | + |
| 28 | + /// <summary> |
| 29 | + /// 获取或设置类目名称。 |
| 30 | + /// </summary> |
| 31 | + [Newtonsoft.Json.JsonProperty("name")] |
| 32 | + [System.Text.Json.Serialization.JsonPropertyName("name")] |
| 33 | + public string Name { get; set; } = default!; |
| 34 | + } |
| 35 | + } |
| 36 | + |
| 37 | + /// <summary> |
| 38 | + /// 获取或设置店铺密码。 |
| 39 | + /// </summary> |
| 40 | + [Newtonsoft.Json.JsonProperty("cipher")] |
| 41 | + [System.Text.Json.Serialization.JsonPropertyName("cipher")] |
| 42 | + public string Cipher { get; set; } = default!; |
| 43 | + |
| 44 | + /// <summary> |
| 45 | + /// 获取或设置目标市场。 |
| 46 | + /// </summary> |
| 47 | + [Newtonsoft.Json.JsonProperty("target_market")] |
| 48 | + [System.Text.Json.Serialization.JsonPropertyName("target_market")] |
| 49 | + public string TargetMarket { get; set; } = default!; |
| 50 | + |
| 51 | + /// <summary> |
| 52 | + /// 获取或设置类目信息。 |
| 53 | + /// </summary> |
| 54 | + [Newtonsoft.Json.JsonProperty("category")] |
| 55 | + [System.Text.Json.Serialization.JsonPropertyName("category")] |
| 56 | + public Types.Category Category { get; set; } = default!; |
| 57 | + } |
| 58 | + } |
| 59 | + |
| 60 | + /// <summary> |
| 61 | + /// 获取或设置类目资产列表。 |
| 62 | + /// </summary> |
| 63 | + [Newtonsoft.Json.JsonProperty("category_assets")] |
| 64 | + [System.Text.Json.Serialization.JsonPropertyName("category_assets")] |
| 65 | + public Types.CategoryAsset[] CategoryAssetList { get; set; } = default!; |
| 66 | + } |
| 67 | + } |
| 68 | + } |
| 69 | +} |
0 commit comments