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