37 lines
937 B
C#
37 lines
937 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOverseasTransferPaymentCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOverseasTransferPaymentCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// Cancelation reason
|
|
/// </summary>
|
|
[XmlElement("cancel_reason")]
|
|
public string CancelReason { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展字段
|
|
/// </summary>
|
|
[XmlElement("pass_through_info")]
|
|
public string PassThroughInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发端机构
|
|
/// </summary>
|
|
[XmlElement("payer_agent_id")]
|
|
public string PayerAgentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// AC请求单号
|
|
/// </summary>
|
|
[XmlElement("transfer_request_id")]
|
|
public string TransferRequestId { get; set; }
|
|
}
|
|
}
|