using System;
using System.Xml.Serialization;
namespace Top.Api.Domain
{
///
/// TokenInfo Data Structure.
///
[Serializable]
public class TokenInfo : TopObject
{
///
/// token info扩展信息
///
[XmlElement("ext")]
public Top.Api.Domain.TokenInfoExt Ext { get; set; }
///
/// isv自己账号的唯一id
///
[XmlElement("isv_account_id")]
public string IsvAccountId { get; set; }
///
/// ISV APP的登录态时长
///
[XmlElement("login_state_expire_in")]
public long LoginStateExpireIn { get; set; }
///
/// open account id
///
[XmlElement("open_account_id")]
public long OpenAccountId { get; set; }
///
/// 时间戳
///
[XmlElement("timestamp")]
public long Timestamp { get; set; }
///
/// 用于防重放的唯一id
///
[XmlElement("uuid")]
public string Uuid { get; set; }
}
}