using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseMcommentFootprintSendModel Data Structure. /// [Serializable] public class AlipaySocialBaseMcommentFootprintSendModel : AopObject { /// /// 足迹服务分配的业务码 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 扩展字段,某些特殊业务需要传,JSON格式 /// [XmlElement("ext_data")] public string ExtData { get; set; } /// /// 足迹内容的模版号 /// [XmlElement("footprint_model_code")] public string FootprintModelCode { get; set; } /// /// 模板内容,JSON格式 /// [XmlElement("footprint_model_data")] public string FootprintModelData { get; set; } /// /// 产生足迹的unix毫秒时间戳 /// [XmlElement("footprint_time")] public long FootprintTime { get; set; } /// /// 业务场景下的唯一键,例如店铺id,访问对象的id /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 上报数据来源 /// [XmlElement("source")] public string Source { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }