NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditUserSystemOauth...

31 lines
919 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// MybankCreditUserSystemOauthQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditUserSystemOauthQueryModel : AopObject
{
/// <summary>
/// 授权码,用户对应用授权后得到。
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 值为authorization_code时代表用code换取值为refresh_token时代表用refresh_token换取
/// </summary>
[XmlElement("grant_type")]
public string GrantType { get; set; }
/// <summary>
/// 刷新令牌上次换取访问令牌时得到。见出参的refresh_token字段
/// </summary>
[XmlElement("refresh_token")]
public string RefreshToken { get; set; }
}
}