using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserMemberCompletegcwtaskModifyModel Data Structure.
///
[Serializable]
public class AlipayUserMemberCompletegcwtaskModifyModel : AopObject
{
///
/// 蚂蚁统一会员ID,16位2088开头。
///
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
///
/// 应用id,固定值,用于识别相关调用方的应用来源
///
[XmlElement("application_id")]
public string ApplicationId { get; set; }
///
/// 任务完成的时间戳,通过new Date()获取任务完成的当前时间即可
///
[XmlElement("biz_date")]
public string BizDate { get; set; }
///
/// 任务的业务类型,与任务列表的biz_type业务类型保持一致
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 业务类型的结果值,按约定结果返回,比如Y
///
[XmlElement("biz_value")]
public string BizValue { get; set; }
///
/// 任务流水id,唯一值,用于双方幂等控制
///
[XmlElement("flow_id")]
public string FlowId { get; set; }
///
/// 任务id
///
[XmlElement("task_id")]
public string TaskId { get; set; }
}
}