1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipaySiteprobeUserInfoGetResponse : AopResponse
- {
-
-
-
- [XmlElement("adv_key")]
- public string AdvKey { get; set; }
-
-
-
- [XmlElement("code")]
- public string Code { get; set; }
-
-
-
- [XmlElement("id_card")]
- public string IdCard { get; set; }
-
-
-
- [XmlElement("msg")]
- public string Msg { get; set; }
-
-
-
- [XmlElement("open_id_1")]
- public string OpenId1 { get; set; }
-
-
-
- [XmlElement("open_id_2")]
- public string OpenId2 { get; set; }
-
-
-
- [XmlElement("phone")]
- public string Phone { get; set; }
- }
- }
|