using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ContactInfo Data Structure. /// [Serializable] public class ContactInfo : AopObject { /// /// 电子邮箱 /// [JsonProperty("email")] public string Email { get; set; } /// /// 身份证号 /// [JsonProperty("id_card_no")] public string IdCardNo { get; set; } /// /// 手机号 /// [JsonProperty("mobile")] public string Mobile { get; set; } /// /// 联系人名字 /// [JsonProperty("name")] public string Name { get; set; } /// /// 电话 /// [JsonProperty("phone")] public string Phone { get; set; } /// /// 联系人类型,取值范围:LEGAL_PERSON:法人;CONTROLLER:实际控制人;AGENT:代理人;OTHER:其他 /// [JsonProperty("type")] public string Type { get; set; } } }