1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayMerchantIndirectAuthorderQuerystatusResponse : AopResponse
- {
-
-
-
- [XmlElement("order_no")]
- public string OrderNo { get; set; }
-
-
-
- [XmlElement("order_status")]
- public string OrderStatus { get; set; }
-
-
-
- [XmlElement("qr_code")]
- public string QrCode { get; set; }
-
-
-
- [XmlArray("verify_list")]
- [XmlArrayItem("indirect_auth_order_failed_reason")]
- public List<IndirectAuthOrderFailedReason> VerifyList { get; set; }
- }
- }
|