NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditGuaranteeSeller...

25 lines
719 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>
/// MybankCreditGuaranteeSelleradmittanceQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditGuaranteeSelleradmittanceQueryModel : AopObject
{
/// <summary>
/// AE卖家sellerLoginID
/// </summary>
[XmlElement("seller_login_id")]
public string SellerLoginId { get; set; }
/// <summary>
/// 会员站点AE:速卖通ALIPAY:支付宝MYBANK:网商银行TAOBAO淘宝B2B_CN中文站B2B_EN国际站
/// </summary>
[XmlElement("site")]
public string Site { get; set; }
}
}