NewGaoKaoApi/PaymentSDK/AliPay/Domain/InterTradeContractPartner.cs

25 lines
683 B
C#
Raw 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>
/// InterTradeContractPartner Data Structure.
/// </summary>
[Serializable]
public class InterTradeContractPartner : AopObject
{
/// <summary>
/// 参与方类型包括OU、NAME、PID、CID、UID、 MID
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 根据参与类型来设置具体的值type=NAME, value=网商银行type=PID, value=2088xxxxxxxx
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}