using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserMembertaskProcessSyncModel Data Structure.
///
[Serializable]
public class AlipayUserMembertaskProcessSyncModel : AopObject
{
///
/// 标识目标业务的业务大类
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 计数型任务涉及外围业务计数的金额,格式为以元为单位带角分数值的小数
///
[XmlElement("money")]
public string Money { get; set; }
///
/// 幂等ID,对于交易类业务可为交易流水号,一次性业务可为userId,外围业务控制。在系统异常重试时需要确保传入同样的流水号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 标识目标业务的业务小类
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}