using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayEbppInvoiceIsvtokenReimApplyResponse.
///
public class AlipayEbppInvoiceIsvtokenReimApplyResponse : AopResponse
{
///
/// 支付宝分配给报销软件的授权token,当前设置有效时间为20分钟
///
[XmlElement("isv_token")]
public string IsvToken { get; set; }
///
/// 该次请求的唯一标志,当前设置有效时间为20分钟
///
[XmlElement("serial_no")]
public string SerialNo { get; set; }
}
}