using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobileShakeUserQueryResponse. /// public class AlipayMobileShakeUserQueryResponse : AopResponse { /// /// 对应的业务信息 /// [XmlElement("bizdata")] public string Bizdata { get; set; } /// /// 支付宝用户登录账户,可能是email或者手机号码 /// [XmlElement("logon_id")] public string LogonId { get; set; } /// /// 对应的核销数据 /// [XmlElement("pass_id")] public string PassId { get; set; } /// /// 支付宝用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }