using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbadvertCommissionLimit Data Structure. /// [Serializable] public class KbadvertCommissionLimit : AopObject { /// /// 推广者类型 /// [JsonProperty("commission_user_type")] public string CommissionUserType { get; set; } /// /// 层级 /// [JsonProperty("level")] public long Level { get; set; } /// /// 比例分佣的最大金额 /// [JsonProperty("max_max_amount")] public string MaxMaxAmount { get; set; } /// /// 固定金额上限 /// [JsonProperty("max_quota_amount")] public string MaxQuotaAmount { get; set; } /// /// 最小分佣比例 /// [JsonProperty("min_commission_percentage")] public string MinCommissionPercentage { get; set; } /// /// 最小固定金额 /// [JsonProperty("min_quota_amount")] public string MinQuotaAmount { get; set; } } }