using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsAutoUserOilExchangeModel Data Structure.
///
[Serializable]
public class AlipayInsAutoUserOilExchangeModel : AopObject
{
///
/// 验证point与benefitId的一致性,才能使用对应的积分
///
[XmlElement("benefit_id")]
public string BenefitId { get; set; }
///
/// 业务发生时间
///
[XmlElement("biz_time")]
public string BizTime { get; set; }
///
/// 将要扣减的油量(ml)
///
[XmlElement("oil")]
public long Oil { get; set; }
///
/// 请求业务单号,单号一致的两次请求将保证幂等
///
[XmlElement("request_id")]
public string RequestId { get; set; }
///
/// 场景类型
///
[XmlElement("scene_type")]
public string SceneType { get; set; }
///
/// 来源,车险分配
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}