using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoEprintTokenGetModel Data Structure.
///
[Serializable]
public class AlipayEcoEprintTokenGetModel : AopObject
{
///
/// 是否优先从缓存中拿取,false则强制刷新,1天20次
///
[XmlElement("cache_first")]
public bool CacheFirst { get; set; }
///
/// 应用ID
///
[XmlElement("client_id")]
public string ClientId { get; set; }
///
/// 应用Secret
///
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
}
}