NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketMcomment...

31 lines
885 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>
/// AlipayOfflineMarketMcommentQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketMcommentQueryModel : AopObject
{
/// <summary>
/// 调用途径: 1当值为ISV表示isv途径调用 2当值为PROVIDER表示服务商调用
/// </summary>
[XmlElement("op_role")]
public string OpRole { get; set; }
/// <summary>
/// 字段涵义当前交易对应的商户partner_id 仅op_role='PROVIDER'必须传入
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}