1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayPlatformDeveloperGetResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("name")]
- public string Name { get; set; }
-
-
-
- [XmlElement("status")]
- public string Status { get; set; }
-
-
-
- [XmlElement("type")]
- public string Type { get; set; }
- }
- }
|