using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserCharityForestSendModel Data Structure. /// [Serializable] public class AlipayUserCharityForestSendModel : AopObject { /// /// 唯一单据号,用于发能量幂等控制 /// [JsonProperty("biz_no")] public string BizNo { get; set; } /// /// 业务发生时间 /// [JsonProperty("biz_time")] public string BizTime { get; set; } /// /// 能量值,最小1g,最大100kg(100,000),不能有小数 /// [JsonProperty("energy")] public long Energy { get; set; } /// /// 能量气泡类型 /// [JsonProperty("energy_type")] public string EnergyType { get; set; } /// /// 业务来源 /// [JsonProperty("source")] public string Source { get; set; } /// /// 用户的支付宝账户ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }