Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMobileBksigntokenVerifyResponse.cs

46 lines
982 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMobileBksigntokenVerifyResponse.
/// </summary>
public class AlipayMobileBksigntokenVerifyResponse : AopResponse
{
/// <summary>
/// 返回值创建时间
/// </summary>
[JsonProperty("createtimestamp")]
public string Createtimestamp { get; set; }
/// <summary>
/// 返回值logonId
/// </summary>
[JsonProperty("loginid")]
public string Loginid { get; set; }
/// <summary>
/// 结果说明
/// </summary>
[JsonProperty("memo")]
public string Memo { get; set; }
/// <summary>
/// 结果状态码
/// </summary>
[JsonProperty("resultcode")]
public long Resultcode { get; set; }
/// <summary>
/// 是否成功
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
/// <summary>
/// 返回值userId
/// </summary>
[JsonProperty("userid")]
public string Userid { get; set; }
}
}