using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiAdvertCommissionCascademissionCreateModel Data Structure. /// [Serializable] public class KoubeiAdvertCommissionCascademissionCreateModel : AopObject { /// /// 子任务的分佣配置 /// [JsonProperty("cascade_mission_conf")] public List CascadeMissionConf { get; set; } /// /// 根据identify_type指定的值 misison时,为需要设置子任务的分佣任务ID voucher时,为需要券ID /// [JsonProperty("identify")] public string Identify { get; set; } /// /// 主键类型 mission:已经领取的任务,需要在该任务下发布子任务的ID voucher:任务对应的券ID /// [JsonProperty("identify_type")] public string IdentifyType { get; set; } /// /// 名称 /// [JsonProperty("name")] public string Name { get; set; } } }