NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandIndirectTr...

31 lines
975 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>
/// AntMerchantExpandIndirectTransferModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandIndirectTransferModel : 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; }
/// <summary>
/// 商户转移目标的id填银联或者网联的id
/// </summary>
[XmlElement("transfer_target_id")]
public string TransferTargetId { get; set; }
}
}