NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceFileSyncRe...

55 lines
1.5 KiB
C#
Raw 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>
/// AlipayEbppInvoiceFileSyncRetryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceFileSyncRetryModel : AopObject
{
/// <summary>
/// 发票代码
/// </summary>
[XmlElement("einv_code")]
public string EinvCode { get; set; }
/// <summary>
/// 发票号码
/// </summary>
[XmlElement("einv_no")]
public string EinvNo { get; set; }
/// <summary>
/// 文件下载链接在is_url_replace为true的时候该字段必填
/// </summary>
[XmlElement("file_url")]
public string FileUrl { get; set; }
/// <summary>
/// 是否需要替换文件下载链接
/// </summary>
[XmlElement("is_url_replace")]
public bool IsUrlReplace { get; set; }
/// <summary>
/// 商户简称userId未传的时候该字段必填
/// </summary>
[XmlElement("m_short_name")]
public string MShortName { get; set; }
/// <summary>
/// 外部交易流水号userId未传的情况下该字段必填
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 蚂蚁统一会员ID该字段未传的情况下商户简称和外部交易流水号必填
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}