using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMerchantIndirectSmidbindQueryResponse. /// public class AlipayMerchantIndirectSmidbindQueryResponse : AopResponse { /// /// 确认状态,枚举:已确认(AUTHORIZED)/未确认(UNAUTHORIZED)/已销户(CLOSED)/smid不存在(SMID_NOT_EXIST) /// [XmlElement("check_result")] public string CheckResult { get; set; } } }