using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppIndustryKmsPubkeyQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppIndustryKmsPubkeyQueryModel : AopObject
{
///
/// 业务类型
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 证件号码的hash值,使用MD5算法获取的hash
///
[XmlElement("cert_no_hash")]
public string CertNoHash { get; set; }
///
/// 证件类型 可选值(身份证:IDENTITY_CARD)
///
[XmlElement("cert_type")]
public string CertType { get; set; }
///
/// 子业务类型
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}