1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayOperatorMobileBindResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("certificate")]
- public string Certificate { get; set; }
-
-
-
- [XmlElement("mobile_no")]
- public string MobileNo { get; set; }
-
-
-
- [XmlElement("status")]
- public string Status { get; set; }
-
-
-
- [XmlElement("user_name")]
- public string UserName { get; set; }
- }
- }
|