NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTaxNeworderSt...

55 lines
1.9 KiB
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// AlipayOverseasTaxNeworderStatusSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTaxNeworderStatusSyncModel : AopObject
{
/// <summary>
/// 纸质退税单号
/// </summary>
[XmlElement("doc_id")]
public string DocId { get; set; }
/// <summary>
/// 扩展参数json格式
/// </summary>
[XmlElement("extend_param")]
public string ExtendParam { get; set; }
/// <summary>
/// 当前状态海关已盖章STAMPED海关拒绝REJECTED_BY_CUSTOMS退税机构收到退税单RECEIVED作废VOIDED失败FAILED过期EXPIRED已退税REFUNDED已使用非支付宝退税REFUNDED_NON_ALIPAY
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 当前状态发生变更的时间(UTC+8)格式yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("status_change_time")]
public string StatusChangeTime { get; set; }
/// <summary>
/// 当前状态要给用户的提示信息
/// </summary>
[XmlElement("status_msg")]
public string StatusMsg { get; set; }
/// <summary>
/// 支付宝退税单号
/// </summary>
[XmlElement("tax_order_no")]
public string TaxOrderNo { get; set; }
/// <summary>
/// 支付宝资金订单号预授权退税下单接口返回的tax_refund_no原单笔退税接口返回的refund_order_no批量退税结果文件倒数第二列。当且status为REFUNDED时必选其余状态忽略
/// </summary>
[XmlElement("tax_payment_no")]
public string TaxPaymentNo { get; set; }
}
}