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

42 lines
1.4 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>
/// InsQueryPerson Data Structure.
/// </summary>
[Serializable]
public class InsQueryPerson : AopObject
{
/// <summary>
/// 证件号码;如果渠道账号字段channel_user_id没填则本字段为必填
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型;如果渠道账号字段没填则必填 该字段和cert_no为配对字段 100:居民身份证;102:护照;103:军官证;104:士兵证;105:港澳居民往来内地通行证;106:台湾同胞往来大陆通行证;109:警官证
/// </summary>
[JsonProperty("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 渠道账号对应的uid;如果证件类型字段没填则本字段为必填
/// </summary>
[JsonProperty("channel_user_id")]
public string ChannelUserId { get; set; }
/// <summary>
/// 渠道账号来源: 1:支付宝账号; 2:淘宝账号; 如果证件类型字段没填则必填。 和channel_user_id 配对
/// </summary>
[JsonProperty("channel_user_source")]
public string ChannelUserSource { get; set; }
/// <summary>
/// 保单用户搜索的类型: 1按照投保人搜索 2按照受益人搜索 3按照被保人搜索
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}