Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEbppInvoiceUserTradeQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
1.3 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>
/// AlipayEbppInvoiceUserTradeQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceUserTradeQueryModel : AopObject
{
/// <summary>
/// 发票管家交易id来源于用户支付后开票申请跳转开票方的链接中带入参数einv_trade_id
/// </summary>
[JsonProperty("einv_trade_id")]
public string EinvTradeId { get; set; }
/// <summary>
/// 随机数从支付宝钱包链接跳转到开票方外部链接中带入的一项参数调用该方法需将此参数透传回来参数名random
/// </summary>
[JsonProperty("random")]
public string Random { get; set; }
/// <summary>
/// 时间戳从支付宝钱包链接跳转到开票方外部链接中带入的一项参数调用该方法需将此参数透传回来参数名timestamp
/// </summary>
[JsonProperty("timestamp")]
public string Timestamp { get; set; }
/// <summary>
/// 令牌,从支付宝钱包链接跳转到开票方外部链接中带入的一项参数,调用该方法需将此参数透传回来,传入时请进行URLEncode,采用utf-编码格式参数名token
/// </summary>
[JsonProperty("token")]
public string Token { get; set; }
}
}