24 lines
704 B
C#
24 lines
704 B
C#
using System;
|
||
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Domain
|
||
{
|
||
/// <summary>
|
||
/// AntMerchantExpandIndirectOnlineQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AntMerchantExpandIndirectOnlineQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 受理商户在受理机构下的唯一标识,与sub_merchant_id二选一必传
|
||
/// </summary>
|
||
[JsonProperty("external_id")]
|
||
public string ExternalId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号,与external_id二选一必传
|
||
/// </summary>
|
||
[JsonProperty("sub_merchant_id")]
|
||
public string SubMerchantId { get; set; }
|
||
}
|
||
} |