using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbAdvertCommissionClauseQuotaResponse Data Structure. /// [Serializable] public class KbAdvertCommissionClauseQuotaResponse : AopObject { /// /// 分佣定额(精度2位的非负小数) /// [JsonProperty("quota_amount")] public string QuotaAmount { get; set; } } }