NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsAutoUserOilExchang...

55 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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