Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InvolvedEntity.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1.2 KiB
C#
Raw 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>
/// InvolvedEntity Data Structure.
/// </summary>
[Serializable]
public class InvolvedEntity : AopObject
{
/// <summary>
/// 实体身份编码-个人是身份证号码、企业是工商注册号、会员是会员编号-具体的数字编号
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
/// <summary>
/// 实体编码的类型。例如若实体为个人编码可能为身份证则code_type为“RESIDENT”可能为户口簿则code_type为“HOUSEHOLD”若实体为ALIPAY编码可能为支付宝ID,则code_type为“USER_ID”
/// </summary>
[JsonProperty("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 实体的标识-个人是姓名、企业是公司名称等,会员是会员名称,如支付宝的手机号或者邮箱号
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 对象的类型。 类型说明:值 个人:PERSON 企业:COMPANY
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}