46 lines
982 B
C#
46 lines
982 B
C#
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; }
|
|
}
|
|
} |