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