1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipaySystemOauthTokenResponse : AopResponse
- {
-
-
-
- [XmlElement("access_token")]
- public string AccessToken { get; set; }
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("expires_in")]
- public string ExpiresIn { get; set; }
-
-
-
- [XmlElement("re_expires_in")]
- public string ReExpiresIn { get; set; }
-
-
-
- [XmlElement("refresh_token")]
- public string RefreshToken { get; set; }
- }
- }
|