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

28 lines
1000 B
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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayTradeCustomsDeclareResponse.
/// </summary>
public class AlipayTradeCustomsDeclareResponse : AopResponse
{
/// <summary>
/// 支付宝报关流水号。
/// </summary>
[JsonProperty("alipay_declare_no")]
public string AlipayDeclareNo { get; set; }
/// <summary>
/// 订购人身份信息和支付人的身份信息验证结果。T表示商户传入的订购人姓名和身份证号和支付人的姓名和身份证号一致。F代表商户传入的订购人姓名和身份证号和支付人的姓名和身份证号不一致。对于同一笔报关单支付宝只会校验一次如果多次重推不会返回此参数。
/// </summary>
[JsonProperty("identity_check")]
public string IdentityCheck { get; set; }
/// <summary>
/// 支付宝推送到海关的支付单据号。
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}