Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ContactInfo Data Structure.
/// </summary>
[Serializable]
public class ContactInfo : AopObject
{
/// <summary>
/// 电子邮箱
/// </summary>
[JsonProperty("email")]
public string Email { get; set; }
/// <summary>
/// 身份证号
/// </summary>
[JsonProperty("id_card_no")]
public string IdCardNo { get; set; }
/// <summary>
/// 手机号
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 联系人名字
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 电话
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
/// <summary>
/// 联系人类型取值范围LEGAL_PERSON法人CONTROLLER实际控制人AGENT代理人OTHER其他
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}