using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingSharetokenCreateModel Data Structure. /// [Serializable] public class AlipayMarketingSharetokenCreateModel : AopObject { /// /// 业务标识,类似于业务主键,诸如pid、uid、门店id /// [XmlElement("biz_linked_id")] public string BizLinkedId { get; set; } /// /// 吱口令的业务类型,新增业务请联系吱口令PD和开发分配 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 展示在吱口令解码面板上的左下方按钮,一般用作取消操作 /// [XmlElement("btn_left")] public string BtnLeft { get; set; } /// /// 吱口令解码面板上左下方按钮的连接。一般不建议传值,默认行为是关闭吱口令面板 /// [XmlElement("btn_left_href")] public string BtnLeftHref { get; set; } /// /// 吱口令解码面板上的右下方按钮文案 /// [XmlElement("btn_right")] public string BtnRight { get; set; } /// /// 吱口令解码面板上右下方按钮的链接、一般是活动页面或业务跳转地址 /// [XmlElement("btn_right_href")] public string BtnRightHref { get; set; } /// /// 展示在吱口令解码的面板上的描述文案 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 展示在吱口令解码面板上的图标。建议传入cdn的地址。 /// [XmlElement("icon")] public string Icon { get; set; } /// /// 启用时间,如果为空,则默认给接口调用时候系统的当前时间 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 吱口令的有效期 /// [XmlElement("timeout")] public long Timeout { get; set; } /// /// 展示在吱口令解码的面板上的标题字段 /// [XmlElement("title")] public string Title { get; set; } } }