| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability374.Domain;
- public class TaobaoTbkActivityInfoGetData
- {
- /*
- 【本地化】微信推广二维码地址
- */
- private string? wxQrcodeUrl;
- /*
- 淘客推广长链
- */
- private string? clickUrl;
- /*
- 淘客推广短链
- */
- private string? shortClickUrl;
- /*
- 投放平台, 1-PC 2-无线
- */
- private string? terminalType;
- /*
- 物料素材下载地址
- */
- private string? materialOssUrl;
- /*
- 会场名称
- */
- private string? pageName;
- /*
- 活动开始时间
- */
- private string? pageStartTime;
- /*
- 活动结束时间
- */
- private string? pageEndTime;
- /*
- 【本地化】微信小程序路径
- */
- private string? wxMiniprogramPath;
- [JsonPropertyName("wx_qrcode_url")]
- public string? WxQrcodeUrl
- {
- get => wxQrcodeUrl;
- set => this.wxQrcodeUrl = value;
- }
- [JsonPropertyName("click_url")]
- public string? ClickUrl
- {
- get => clickUrl;
- set => this.clickUrl = value;
- }
- [JsonPropertyName("short_click_url")]
- public string? ShortClickUrl
- {
- get => shortClickUrl;
- set => this.shortClickUrl = value;
- }
- [JsonPropertyName("terminal_type")]
- public string? TerminalType
- {
- get => terminalType;
- set => this.terminalType = value;
- }
- [JsonPropertyName("material_oss_url")]
- public string? MaterialOssUrl
- {
- get => materialOssUrl;
- set => this.materialOssUrl = value;
- }
- [JsonPropertyName("page_name")]
- public string? PageName
- {
- get => pageName;
- set => this.pageName = value;
- }
- [JsonPropertyName("page_start_time")]
- public string? PageStartTime
- {
- get => pageStartTime;
- set => this.pageStartTime = value;
- }
- [JsonPropertyName("page_end_time")]
- public string? PageEndTime
- {
- get => pageEndTime;
- set => this.pageEndTime = value;
- }
- [JsonPropertyName("wx_miniprogram_path")]
- public string? WxMiniprogramPath
- {
- get => wxMiniprogramPath;
- set => this.wxMiniprogramPath = value;
- }
- }
|