NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPayCodecAcodeCertExpi...

31 lines
780 B
C#
Raw 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>
/// AlipayPayCodecAcodeCertExpireModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPayCodecAcodeCertExpireModel : AopObject
{
/// <summary>
/// 用户业务身份标识
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 机构类型
/// </summary>
[XmlElement("institution_type")]
public string InstitutionType { get; set; }
/// <summary>
/// 变更时间点会失效该时间点之前的证书Long型
/// </summary>
[XmlElement("time")]
public long Time { get; set; }
}
}