接口文件
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// KbadvertCommissionLimit Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class KbadvertCommissionLimit : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 推广者类型
|
||||
/// </summary>
|
||||
[JsonProperty("commission_user_type")]
|
||||
public string CommissionUserType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 层级
|
||||
/// </summary>
|
||||
[JsonProperty("level")]
|
||||
public long Level { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 比例分佣的最大金额
|
||||
/// </summary>
|
||||
[JsonProperty("max_max_amount")]
|
||||
public string MaxMaxAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 固定金额上限
|
||||
/// </summary>
|
||||
[JsonProperty("max_quota_amount")]
|
||||
public string MaxQuotaAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最小分佣比例
|
||||
/// </summary>
|
||||
[JsonProperty("min_commission_percentage")]
|
||||
public string MinCommissionPercentage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最小固定金额
|
||||
/// </summary>
|
||||
[JsonProperty("min_quota_amount")]
|
||||
public string MinQuotaAmount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user