Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/LegalRepresentativeInfo.cs

48 lines
1.5 KiB
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// LegalRepresentativeInfo Data Structure.
/// </summary>
[Serializable]
public class LegalRepresentativeInfo : AopObject
{
/// <summary>
/// 法人证件有效期YYYY-MM-DD格式
/// </summary>
[JsonProperty("legal_representative_cert_indate")]
public string LegalRepresentativeCertIndate { get; set; }
/// <summary>
/// 法人证件号码
/// </summary>
[JsonProperty("legal_representative_cert_no")]
public string LegalRepresentativeCertNo { get; set; }
/// <summary>
/// 法人证件背面照片(如证件为身份证则上传身份证国徽面图片)
/// </summary>
[JsonProperty("legal_representative_cert_pic_back")]
public string LegalRepresentativeCertPicBack { get; set; }
/// <summary>
/// 法人证件正面照片(如证件为身份证则上传身份证头像面图片)
/// </summary>
[JsonProperty("legal_representative_cert_pic_front")]
public string LegalRepresentativeCertPicFront { get; set; }
/// <summary>
/// 法人证件类型支持传入的类型为RESIDENT(居民身份证)括号中为每种类型的释义,不需要将括号中的内容当参数内容传入。
/// </summary>
[JsonProperty("legal_representative_cert_type")]
public string LegalRepresentativeCertType { get; set; }
/// <summary>
/// 法人姓名
/// </summary>
[JsonProperty("legal_representative_name")]
public string LegalRepresentativeName { get; set; }
}
}