Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarParkingOrderPayModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

60 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingOrderPayModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingOrderPayModel : AopObject
{
/// <summary>
/// 车牌,需要进行停车缴费代扣的车辆牌照
/// </summary>
[JsonProperty("car_number")]
public string CarNumber { get; set; }
/// <summary>
/// ISV停车场ID由ISV定义的停车场标识系统唯一parking_id和out_parking_id不能同时为空
/// </summary>
[JsonProperty("out_parking_id")]
public string OutParkingId { get; set; }
/// <summary>
/// 支付宝合作商户网站唯一订单号
/// </summary>
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 支付宝停车平台ID由支付宝定义的该停车场标识系统唯一, parking_id和out_parking_id不能同时为空
/// </summary>
[JsonProperty("parking_id")]
public string ParkingId { get; set; }
/// <summary>
/// 卖家支付宝用户号 卖家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数。与seller_logon_id不能同时为空
/// </summary>
[JsonProperty("seller_id")]
public string SellerId { get; set; }
/// <summary>
/// 卖家支付宝账号可以为email或者手机号。 如果seller_id不为空则以seller_id的值作为卖家账号忽略本参数。
/// </summary>
[JsonProperty("seller_logon_id")]
public string SellerLogonId { get; set; }
/// <summary>
/// 订单标题,描述订单用途
/// </summary>
[JsonProperty("subject")]
public string Subject { get; set; }
/// <summary>
/// 订单金额,精确到小数点后两位
/// </summary>
[JsonProperty("total_fee")]
public string TotalFee { get; set; }
}
}