NewGaoKaoApi/PaymentSDK/AliPay/Domain/RoyaltyInfo.cs

27 lines
783 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>
/// RoyaltyInfo Data Structure.
/// </summary>
[Serializable]
public class RoyaltyInfo : AopObject
{
/// <summary>
/// 分账明细的信息可以描述多条分账指令json数组。
/// </summary>
[XmlArray("royalty_detail_infos")]
[XmlArrayItem("royalty_detail_infos")]
public List<RoyaltyDetailInfos> RoyaltyDetailInfos { get; set; }
/// <summary>
/// 分账类型 卖家的分账类型目前只支持传入ROYALTY普通分账类型
/// </summary>
[XmlElement("royalty_type")]
public string RoyaltyType { get; set; }
}
}