using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozAuthenticationSmilefaceSendmeSendModel Data Structure. /// [Serializable] public class ZolozAuthenticationSmilefaceSendmeSendModel : AopObject { /// /// 业务类型 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 活动ID,用于发送优惠券 /// [XmlElement("camp_id")] public string CampId { get; set; } /// /// 扩展字段 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 可通过线下刷脸获取 /// [XmlElement("ftoken")] public string Ftoken { get; set; } /// /// 推送消息到用户钱包中,并打开该小程序 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 跳转到小程序内的页面 /// [XmlElement("path")] public string Path { get; set; } } }