NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppIndustryKmsPubkey...

37 lines
966 B
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>
/// AlipayEbppIndustryKmsPubkeyQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppIndustryKmsPubkeyQueryModel : AopObject
{
/// <summary>
/// 业务类型
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 证件号码的hash值使用MD5算法获取的hash
/// </summary>
[XmlElement("cert_no_hash")]
public string CertNoHash { get; set; }
/// <summary>
/// 证件类型 可选值身份证IDENTITY_CARD
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 子业务类型
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}