NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayTradeBatchTransferMod...

33 lines
1.1 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayTradeBatchTransferModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeBatchTransferModel : AopObject
{
/// <summary>
/// 业务扩展参数
/// </summary>
[XmlElement("extend_params")]
public string ExtendParams { get; set; }
/// <summary>
/// 结算请求外部流水号32个字符以内、可包含字母、数字、下划线需保证在商户端不重复
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 分账条款明细 特别注意:最好一次只传一个分账条款。 如果传多个,则要求出账方只能有一个, 举例A分给B+A分给C+A分给D=OK A分给B+C分给D=不行
/// </summary>
[XmlArray("royalty_parameters")]
[XmlArrayItem("royalty_detail_info")]
public List<RoyaltyDetailInfo> RoyaltyParameters { get; set; }
}
}