using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobileStdPublicExpressUserQueryResponse.
///
public class AlipayMobileStdPublicExpressUserQueryResponse : AopResponse
{
///
/// 证件号
///
[JsonProperty("cert_no")]
public string CertNo { get; set; }
///
/// 证件类型,身份证
///
[JsonProperty("cert_type")]
public string CertType { get; set; }
}
}