using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayExscUserFirstsignGetResponse. /// public class AlipayExscUserFirstsignGetResponse : AopResponse { /// /// 返回结果的业务类型。首次快捷绑卡业务类型 (first_sign) /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 业务处理结果 true 无绑卡记录,本次是首次绑卡 false 曾经绑过快捷卡,本次不是首次绑卡 /// [XmlElement("success")] public bool Success { get; set; } } }