| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability3152.Domain;
- public class TaobaoTbkThorMfrsPromotionQueryManufacturerLaunchOption
- {
- /*
- 图片按照短边不超过320的方式等比例缩放,转字节流时按jpg格式,压缩率80进行转换
- */
- private string? img;
- /*
- 商品副标题
- */
- private string? subTitle;
- /*
- 场景类型
- */
- private string? sceneCode;
- /*
- OAID/手机号/imei
- */
- private string? uniqueIdType;
- /*
- 价格
- */
- private string? price;
- /*
- 媒体pid
- */
- private string? pid;
- /*
- 商品标题
- */
- private string? title;
- /*
- sku名
- */
- private string? sku;
- /*
- 唯一标识
- */
- private string? uniqueId;
- /*
- 商品链接
- */
- private string? url;
- /*
- 淘口令
- */
- private string? tbpwd;
- /*
- 子场景码:Hivision(拍照识图)、Hitoch(双指按压)
- */
- private string? sceneSubCode;
- /*
- 如手淘、京东、抖音、快手
- */
- private string? from;
- /*
- 扩展字段
- */
- private string? variableMap;
- [JsonPropertyName("img")]
- public string? Img
- {
- get => img;
- set => this.img = value;
- }
- [JsonPropertyName("sub_title")]
- public string? SubTitle
- {
- get => subTitle;
- set => this.subTitle = value;
- }
- [JsonPropertyName("scene_code")]
- public string? SceneCode
- {
- get => sceneCode;
- set => this.sceneCode = value;
- }
- [JsonPropertyName("unique_id_type")]
- public string? UniqueIdType
- {
- get => uniqueIdType;
- set => this.uniqueIdType = value;
- }
- [JsonPropertyName("price")]
- public string? Price
- {
- get => price;
- set => this.price = value;
- }
- [JsonPropertyName("pid")]
- public string? Pid
- {
- get => pid;
- set => this.pid = value;
- }
- [JsonPropertyName("title")]
- public string? Title
- {
- get => title;
- set => this.title = value;
- }
- [JsonPropertyName("sku")]
- public string? Sku
- {
- get => sku;
- set => this.sku = value;
- }
- [JsonPropertyName("unique_id")]
- public string? UniqueId
- {
- get => uniqueId;
- set => this.uniqueId = value;
- }
- [JsonPropertyName("url")]
- public string? Url
- {
- get => url;
- set => this.url = value;
- }
- [JsonPropertyName("tbpwd")]
- public string? Tbpwd
- {
- get => tbpwd;
- set => this.tbpwd = value;
- }
- [JsonPropertyName("scene_sub_code")]
- public string? SceneSubCode
- {
- get => sceneSubCode;
- set => this.sceneSubCode = value;
- }
- [JsonPropertyName("from")]
- public string? From
- {
- get => from;
- set => this.from = value;
- }
- [JsonPropertyName("variable_map")]
- public string? VariableMap
- {
- get => variableMap;
- set => this.variableMap = value;
- }
- }
|