You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
699 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenAuthIndustryPlatformCreateTokenResponse.
/// </summary>
public class AlipayOpenAuthIndustryPlatformCreateTokenResponse : AopResponse
{
/// <summary>
/// 授权码
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// appid
/// </summary>
[XmlElement("requst_app_id")]
public string RequstAppId { get; set; }
/// <summary>
/// scope
/// </summary>
[XmlElement("scope")]
public string Scope { get; set; }
}
}