using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// IndividualInfo Data Structure.
///
[Serializable]
public class IndividualInfo : AopObject
{
///
/// 生日
///
[JsonProperty("date_of_birth")]
public string DateOfBirth { get; set; }
///
/// 证件号码
///
[JsonProperty("id_number")]
public string IdNumber { get; set; }
///
/// 个人名字
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 国籍
///
[JsonProperty("nationality")]
public string Nationality { get; set; }
///
/// 个人居住地
///
[JsonProperty("residential_address")]
public string ResidentialAddress { get; set; }
///
/// 该个体的类型
///
[JsonProperty("type")]
public string Type { get; set; }
}
}