接口文件
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// KbAdvertCommissionClauseResponse Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class KbAdvertCommissionClauseResponse : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 比例分佣规则 只有type=PERCENTAGE_CLAUSE才会有值
|
||||
/// </summary>
|
||||
[JsonProperty("percentage_clause")]
|
||||
public KbAdvertCommissionClausePercentageResponse PercentageClause { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 定额分佣规则 只有type=QUOTA_CLAUSE才会有值
|
||||
/// </summary>
|
||||
[JsonProperty("quota_clause")]
|
||||
public KbAdvertCommissionClauseQuotaResponse QuotaClause { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分佣规则类型 PERCENTAGE_CLAUSE-比例 QUOTA_CLAUSE-定额
|
||||
/// </summary>
|
||||
[JsonProperty("type")]
|
||||
public string Type { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user