using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KbAdvertProcessMissionResponse Data Structure. /// [Serializable] public class KbAdvertProcessMissionResponse : AopObject { /// /// 标识ID /// [XmlElement("identify")] public string Identify { get; set; } /// /// 主键类型 activity_id:运营活动ID voucher:商品ID mission:分佣任务ID /// [XmlElement("identify_type")] public string IdentifyType { get; set; } /// /// 任务状态 UNCONFIRMED-未确认(代表任务还在等待商户确认) EFFECTIVE-有效 INVALID-无效 /// [XmlElement("promote_status")] public string PromoteStatus { get; set; } } }