using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserMemberTakegcwtaskCreateModel Data Structure. /// [Serializable] public class AlipayUserMemberTakegcwtaskCreateModel : AopObject { /// /// 蚂蚁统一会员ID,16位2088开头。 /// [XmlElement("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 应用id,固定值,用于识别相关调用方的应用来源 /// [XmlElement("application_id")] public string ApplicationId { get; set; } /// /// 任务流水id,唯一值,用于双方幂等控制 /// [XmlElement("flow_id")] public string FlowId { get; set; } /// /// 任务id /// [XmlElement("task_id")] public string TaskId { get; set; } } }