You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
570 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayAppTokenGetResponse.
/// </summary>
public class AlipayAppTokenGetResponse : AopResponse
{
/// <summary>
/// 应用访问令牌
/// </summary>
[XmlElement("app_access_token")]
public string AppAccessToken { get; set; }
/// <summary>
/// 应用访问凭证有效时间,单位:秒
/// </summary>
[XmlElement("expires_in")]
public long ExpiresIn { get; set; }
}
}