using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTransferPaymentDisburseModel Data Structure. /// [Serializable] public class AlipayOverseasTransferPaymentDisburseModel : AopObject { /// /// 透传信息 /// [XmlElement("pass_through_info")] public string PassThroughInfo { get; set; } /// /// 发端机构 /// [XmlElement("payer_agent_id")] public string PayerAgentId { get; set; } /// /// 批量请求接口,目前仅支持单笔能力 /// [XmlElement("transactions")] public string Transactions { get; set; } } }