using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayUserPointDeductModel Data Structure.
///
[Serializable]
public class AlipayUserPointDeductModel : AopObject
{
///
/// 蚂蚁会员平台上的权益所对应的编号
///
[JsonProperty("benefit_id")]
public string BenefitId { get; set; }
///
/// 格式为yyyy-MM-dd HH:mm:ss ,业务操作时间用于对账,不传则以调用请求的当前时间计算
///
[JsonProperty("biz_date")]
public string BizDate { get; set; }
///
/// 业务大类,表明此次调用的来源,若无需要则不传。
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 业务流水号,会用于幂等性校验,所以请保证每次请求的业务流水号的唯一性
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 业务子类型,表明业务来源实际操作的业务分类,若无需要则不传。
///
[JsonProperty("sub_biz_type")]
public string SubBizType { get; set; }
}
}