using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// RoyaltyInfo Data Structure.
///
[Serializable]
public class RoyaltyInfo : AopObject
{
///
/// 分账明细的信息,可以描述多条分账指令,json数组。
///
[JsonProperty("royalty_detail_infos")]
public List RoyaltyDetailInfos { get; set; }
///
/// 分账类型 卖家的分账类型,目前只支持传入ROYALTY(普通分账类型)。
///
[JsonProperty("royalty_type")]
public string RoyaltyType { get; set; }
}
}