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