using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserPrincipalInfo Data Structure. /// [Serializable] public class AlipayUserPrincipalInfo : AopObject { /// /// 用户电子邮箱 /// [JsonProperty("email")] public string Email { get; set; } /// /// 用户的手机号 /// [JsonProperty("mobile")] public string Mobile { get; set; } /// /// 支付宝userId /// [JsonProperty("user_id")] public string UserId { get; set; } } }