NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEprintTokenGetMode...

31 lines
763 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>
/// AlipayEcoEprintTokenGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoEprintTokenGetModel : AopObject
{
/// <summary>
/// 是否优先从缓存中拿取false则强制刷新1天20次
/// </summary>
[XmlElement("cache_first")]
public bool CacheFirst { get; set; }
/// <summary>
/// 应用ID
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 应用Secret
/// </summary>
[XmlElement("client_secret")]
public string ClientSecret { get; set; }
}
}