using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayTrustUserStatusGetResponse.
///
public class AlipayTrustUserStatusGetResponse : AopResponse
{
///
/// 短信授权时间
///
[XmlElement("auth_time")]
public string AuthTime { get; set; }
///
/// 短信授权过期失效时间
///
[XmlElement("over_time")]
public string OverTime { get; set; }
///
/// 短信授权发起时间
///
[XmlElement("request_time")]
public string RequestTime { get; set; }
///
/// 1:暂未发起授权;2:已发起授权,但暂未授权;3:授权已到期失效;4:已授权,且有效;5:授权码已失效
///
[XmlElement("status")]
public string Status { get; set; }
}
}