NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityDataInfoSecur...

43 lines
1.9 KiB
C#
Raw 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>
/// AlipaySecurityDataInfoSecuritydataQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityDataInfoSecuritydataQueryModel : AopObject
{
/// <summary>
/// 业务代码.由蚂蚁金服定义的风控查询业务类型,例如: EX0001查询风控黑名单EX0002:查询地理信息数据
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 扩展参数,用于业务扩展入参,格式为json.注意由于嵌套在入参json中,引号需要转义,详见入参样式.
/// </summary>
[XmlElement("ext")]
public string Ext { get; set; }
/// <summary>
/// 查询的主体值,例如身份证号: "210******019087",支持单个或者多个,多个以逗号分隔.主体值支持的数据类型目前有以下,跟type栏位定义的类型对应. bank_card_no,银行卡号、 cert_no,身份证号码、 business_license_no,营业执照号码、 company_name, 公司名称, phone,预留手机号
/// </summary>
[XmlElement("subject")]
public string Subject { get; set; }
/// <summary>
/// 系统名称,标识接入机构内部部门的系统名 ,具体值需要与蚂蚁金服服务提供方约定.
/// </summary>
[XmlElement("system_name")]
public string SystemName { get; set; }
/// <summary>
/// 查询参数类型,描述查询主体值类型.单次查询仅支持查询同一类型的主题值. 以黑名单业务为例: bank_card_no,银行卡号、 cert_no,身份证号码、 business_license_no,营业执照号码、 company_name, 公司名称, phone,预留手机号
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}