NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEbppInvoiceIsvtokenRe...

24 lines
675 B
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.Response
{
/// <summary>
/// AlipayEbppInvoiceIsvtokenReimApplyResponse.
/// </summary>
public class AlipayEbppInvoiceIsvtokenReimApplyResponse : AopResponse
{
/// <summary>
/// 支付宝分配给报销软件的授权token当前设置有效时间为20分钟
/// </summary>
[XmlElement("isv_token")]
public string IsvToken { get; set; }
/// <summary>
/// 该次请求的唯一标志当前设置有效时间为20分钟
/// </summary>
[XmlElement("serial_no")]
public string SerialNo { get; set; }
}
}