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