using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceOperationContentApplyModel Data Structure. /// [Serializable] public class AlipayCommerceOperationContentApplyModel : AopObject { /// /// 展台 /// [XmlElement("booth")] public string Booth { get; set; } /// /// 渠道 /// [XmlElement("channel")] public string Channel { get; set; } /// /// 城市编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 活动 id 加密串 /// [XmlElement("content_id_str")] public string ContentIdStr { get; set; } /// /// 扩展参数 , json 串 , 可选的 key 列表 : prize_id : 奖品 id , ( 指定奖品返奖场景 ) /// [XmlElement("ext_params")] public string ExtParams { get; set; } /// /// 外部业务号,只由可由字母、数字、下划线组成。同一个活动中不可重复,相同的外部业务号会被幂等并返回之前的结果。不填时,系统会生成一个默认固定的外部业务号。 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 运营场景 /// [XmlElement("scene")] public string Scene { get; set; } /// /// 展台 /// [XmlElement("touch_point")] public string TouchPoint { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }