NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserCertifyActionAppl...

25 lines
650 B
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>
/// AlipayUserCertifyActionApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCertifyActionApplyModel : AopObject
{
/// <summary>
/// 表示申请认证信息的业务类型
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表申请认证信息的商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
}
}