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

30 lines
1013 B
C#
Raw Permalink 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>
/// AlipayEcoMycarTradeOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarTradeOrderQueryModel : AopObject
{
/// <summary>
/// 车主平台交易号与车主业务平台订单号相同。和trade_noout_biz_trade_no不能同时为空。
/// </summary>
[JsonProperty("biz_trade_no")]
public string BizTradeNo { get; set; }
/// <summary>
/// 外部订单号和biz_trade_notrade_no不能同时为空
/// </summary>
[JsonProperty("out_biz_trade_no")]
public string OutBizTradeNo { get; set; }
/// <summary>
/// 支付宝交易号。该笔车主平台对应的支付宝交易编号,使用该交易号也可以直接调用支付宝开放平台的交易查询接口查询交易信息。 和biz_trade_noout_biz_trade_no不能同时为空。
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}