NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditRelationQueryMod...

61 lines
2.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>
/// ZhimaCreditRelationQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditRelationQueryModel : AopObject
{
/// <summary>
/// 申请人证件号中国大陆18或者15位合法身份号
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 芝麻平台服务商模式下的二级商户标识,如果是直连商户调用该接口,不需要设置
/// </summary>
[XmlElement("linked_merchant_id")]
public string LinkedMerchantId { get; set; }
/// <summary>
/// 申请人证件姓名简体中文长度不超过64姓名中不含",","/u0001""|","&","^","\\"等特殊字符
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 产品码,标记商户接入的具体产品;直接使用每个接口入参中示例值即可
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 申请人与联系人之间关系类型目前支持4类关系family(亲友)、workmate(同事)、schoolmate(同学)、friend(朋友)
/// </summary>
[XmlElement("relation")]
public string Relation { get; set; }
/// <summary>
/// 联系人姓名简体中文长度不超过64姓名中不含",","/u0001""|","&","^","\\"等特殊字符
/// </summary>
[XmlElement("relation_name")]
public string RelationName { get; set; }
/// <summary>
/// 手机号码。中国大陆合法手机号长度11位不含国家代码
/// </summary>
[XmlElement("relation_phone")]
public string RelationPhone { get; set; }
/// <summary>
/// 商户请求的唯一标志长度64位以内字符串仅限字母数字下划线组合。该标识作为业务调用的唯一标识商户要保证其业务唯一性使用相同transaction_id的查询芝麻在一段时间内一般为1天返回首次查询结果超过有效期的查询即为无效并返回异常有效期内的重复查询不重新计费
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
}
}