using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayDataDataserviceAdPrincipalQueryResponse. /// public class AlipayDataDataserviceAdPrincipalQueryResponse : AopResponse { /// /// 商家支付宝PID /// [XmlElement("alipay_pid")] public string AlipayPid { get; set; } /// /// 商家的全量资质列表 /// [XmlArray("attachment_list")] [XmlArrayItem("outer_attachment")] public List AttachmentList { get; set; } /// /// 商家id /// [XmlElement("principal_id")] public long PrincipalId { get; set; } /// /// 商户审核拒绝理由 /// [XmlElement("refuse_reason")] public string RefuseReason { get; set; } /// /// 状态: ENABLE-生效 DISABLE-失效 CHECKING-待审核 FAILEDCHECK-审核未通过 INIT-初始化 RE_SIGN-待重签 /// [XmlElement("status")] public string Status { get; set; } /// /// 二级行业ID /// [XmlElement("trade_id")] public string TradeId { get; set; } } }