NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaAuthInfoAuthqueryModel.cs

31 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaAuthInfoAuthqueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaAuthInfoAuthqueryModel : AopObject
{
/// <summary>
/// 用于标识当前授权查询的类型分为企业信用产品授权查询和个人信用产品授权查询默认为个人信用授权查询即为C2B 个人与商户间授权查询则传入C2B 个人通过商户进行个人互查时授权则传入C2ConB 企业授权查询则传入B2B
/// </summary>
[XmlElement("auth_category")]
public string AuthCategory { get; set; }
/// <summary>
/// json格式的内容支持2种方式的入参查询 1. 通过证件三要素查询时: identity_type2 identity_param{"certType":"IDENTITY_CARD","name":"张三","certNo":"33021199003132432"} 2. 通过userId查询时 identity_type5 identity_param{"userId":"2088xxxxxx"}
/// </summary>
[XmlElement("identity_param")]
public string IdentityParam { get; set; }
/// <summary>
/// 标识当前查询的类型: 2表示传入证件号姓名证件类型 进行查询 5表示传入userId查询
/// </summary>
[XmlElement("identity_type")]
public string IdentityType { get; set; }
}
}