using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AppTokenExchangeSubElement Data Structure.
///
[Serializable]
public class AppTokenExchangeSubElement : AopObject
{
///
/// 应用授权令牌
///
[XmlElement("app_auth_token")]
public string AppAuthToken { get; set; }
///
/// 刷新令牌
///
[XmlElement("app_refresh_token")]
public string AppRefreshToken { get; set; }
///
/// 授权商户appid
///
[XmlElement("auth_app_id")]
public string AuthAppId { get; set; }
///
/// 过期时间
///
[XmlElement("expires_in")]
public string ExpiresIn { get; set; }
///
/// 刷新令牌过期时间
///
[XmlElement("re_expires_in")]
public string ReExpiresIn { get; set; }
///
/// 授权商户的user_id
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}