using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayDataPrinterTokenGetModel Data Structure.
///
[Serializable]
public class AlipayDataPrinterTokenGetModel : AopObject
{
///
/// 应用id
///
[XmlElement("client_id")]
public string ClientId { get; set; }
///
/// 授与方式
///
[XmlElement("grant_type")]
public string GrantType { get; set; }
///
/// 权限
///
[XmlElement("scope")]
public string Scope { get; set; }
///
/// 应用秘钥
///
[XmlElement("secret")]
public string Secret { get; set; }
}
}