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.

36 lines
1.1 KiB
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenPublicLifeAccountCreateResponse.
/// </summary>
public class AlipayOpenPublicLifeAccountCreateResponse : AopResponse
{
/// <summary>
/// 过期时间在过期时间之前需要拿refresh_token重新换取新的token使用
/// </summary>
[XmlElement("expire_time")]
public string ExpireTime { get; set; }
/// <summary>
/// 生活号id用于表示此生活号唯一性
/// </summary>
[XmlElement("public_id")]
public string PublicId { get; set; }
/// <summary>
/// 刷新令牌,当返回值中过期时间快到了,可以通过此令牌来重新刷新令牌,时间自动延长一年
/// </summary>
[XmlElement("refresh_token")]
public string RefreshToken { get; set; }
/// <summary>
/// 授权token通过授权token可以代替已生成的生活号id进行代理操作例如发送广播等
/// </summary>
[XmlElement("token")]
public string Token { get; set; }
}
}