NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainCred...

31 lines
762 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>
/// MybankCreditSupplychainCreditpayAmountQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainCreditpayAmountQueryModel : AopObject
{
/// <summary>
/// 买方信息这里是ISV的信息
/// </summary>
[XmlElement("buyer")]
public Member Buyer { get; set; }
/// <summary>
/// 平台类型
/// </summary>
[XmlElement("channel_tag")]
public string ChannelTag { get; set; }
/// <summary>
/// Trace信息
/// </summary>
[XmlElement("trace_id")]
public string TraceId { get; set; }
}
}