using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserCustomerIdentifyModel Data Structure. /// [Serializable] public class AlipayUserCustomerIdentifyModel : AopObject { /// /// 预留参数,用于商户区分同一appId下的不同业务场景。默认场景不用传。 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 设备及环境信息 /// [XmlElement("device_info")] public AlipayUserDeviceInfo DeviceInfo { get; set; } /// /// 预留业务扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 用户主体信息。要求AlipayUserPrincipalInfo中的user_id、mobile、email属性,有且只有一个非空。否则接口会忽略除去优先级最高的属性之外的其他属性。 /// [XmlElement("principal")] public AlipayUserPrincipalInfo Principal { get; set; } } }