using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAntpaasTokenidentityCreateModel Data Structure. /// [Serializable] public class AlipayUserAntpaasTokenidentityCreateModel : AopObject { /// /// 业务Id,如新零售场景下创建匿名淘宝账户时的品牌商Id。 如果该值为空,则底层创建匿名账户时以 biz_scene + mobile 进行幂等 如果该值非空,则底层创建匿名账户Id时以 biz_scene + mobile + biz_id 进行幂等。 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 业务域场景 /// [XmlElement("biz_scene")] public string BizScene { get; set; } /// /// 额外附加信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 附加信息Id,如淘宝虚拟账号Id /// [XmlElement("ext_info_id")] public string ExtInfoId { get; set; } /// /// 手机号码,1864234324324 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 1-企业 2-个人 /// [XmlElement("user_type")] public string UserType { get; set; } } }