NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandIndirectOn...

25 lines
768 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>
/// AntMerchantExpandIndirectOnlineQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandIndirectOnlineQueryModel : AopObject
{
/// <summary>
/// 受理商户在受理机构下的唯一标识与sub_merchant_id二选一必传
/// </summary>
[XmlElement("external_id")]
public string ExternalId { get; set; }
/// <summary>
/// 商户在支付宝入驻成功后生成的支付宝内全局唯一的商户编号与external_id二选一必传
/// </summary>
[XmlElement("sub_merchant_id")]
public string SubMerchantId { get; set; }
}
}