1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayAcquireCreateandpayResponse : AopResponse
- {
-
-
-
- [XmlElement("buyer_logon_id")]
- public string BuyerLogonId { get; set; }
-
-
-
- [XmlElement("buyer_user_id")]
- public string BuyerUserId { get; set; }
-
-
-
- [XmlElement("detail_error_code")]
- public string DetailErrorCode { get; set; }
-
-
-
- [XmlElement("detail_error_des")]
- public string DetailErrorDes { get; set; }
-
-
-
- [XmlElement("extend_info")]
- public string ExtendInfo { get; set; }
-
-
-
- [XmlElement("out_trade_no")]
- public string OutTradeNo { get; set; }
-
-
-
- [XmlElement("result_code")]
- public string ResultCode { get; set; }
-
-
-
- [XmlElement("trade_no")]
- public string TradeNo { get; set; }
- }
- }
|