NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayTradeRoyaltyRelationU...

27 lines
808 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayTradeRoyaltyRelationUnbindModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeRoyaltyRelationUnbindModel : AopObject
{
/// <summary>
/// 外部请求号。32个字符以内可包含字母、数字、下划线。需保证在商户端不重复。
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 分账接收方列表单次传入最多20个
/// </summary>
[XmlArray("receiver_list")]
[XmlArrayItem("royalty_entity")]
public List<RoyaltyEntity> ReceiverList { get; set; }
}
}