You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1 KiB
C#

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