NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarParkingAgreem...

31 lines
969 B
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>
/// AlipayEcoMycarParkingAgreementQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingAgreementQueryModel : AopObject
{
/// <summary>
/// 支付宝用户ID只有传入该参数才能准确的匹配车和用户的关系否则有可能无法正确获取到用户的代扣状态。
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 车牌用户车辆进场时ISV设备识别到的车辆牌照
/// </summary>
[XmlElement("car_number")]
public string CarNumber { get; set; }
/// <summary>
/// 接口版本号不填则默认为v2.0建议使用最新版v2.1
/// </summary>
[XmlElement("ver")]
public string Ver { get; set; }
}
}