NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceAuthUnsign...

37 lines
1.1 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>
/// AlipayEbppInvoiceAuthUnsignModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceAuthUnsignModel : AopObject
{
/// <summary>
/// 发票授权类型可选值INVOICE_AUTO_SYNC发票自动回传 INVOICE_TWOWAY_AUTO_SYNC发票双向自动回传
/// </summary>
[XmlElement("authorization_type")]
public string AuthorizationType { get; set; }
/// <summary>
/// 扩展字段格式为KEY1=VALUE1,KEY2=VALUE2,KEY3=VALUE3 邮箱地址KEY为EMAIL_ADDRESS
/// </summary>
[XmlElement("extend_fields")]
public string ExtendFields { get; set; }
/// <summary>
/// 开票商户品牌简称,与商户入驻时的品牌简称保持一致。
/// </summary>
[XmlElement("m_short_name")]
public string MShortName { get; set; }
/// <summary>
/// 支付宝用户userId
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}