123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Xml.Serialization;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayMerchantTicketUseResponse : AopResponse
- {
-
-
-
- [XmlElement("biz_no")]
- public string BizNo { get; set; }
-
-
-
- [XmlElement("error_code")]
- public string ErrorCode { get; set; }
-
-
-
- [XmlElement("error_msg")]
- public string ErrorMsg { get; set; }
-
-
-
- [XmlElement("success_code")]
- public string SuccessCode { get; set; }
-
-
-
- [XmlElement("ticket")]
- public Ticket Ticket { get; set; }
- }
- }
|