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