NewGaoKaoApi/PaymentSDK/AliPay/Domain/OuterAttachment.cs

43 lines
1.4 KiB
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>
/// OuterAttachment Data Structure.
/// </summary>
[Serializable]
public class OuterAttachment : AopObject
{
/// <summary>
/// 资质类型ISV_ICP_LICENCE-代理商营业执照ICP_LICENCE-营业执照PORTRAIT_AUTH_LICENSE-肖像授权文件TRADE_MARK_LICENSE - 商标注册证SPECIAL_BUSINESS_LICENSE - 特殊行业资质OTHER_FILE - 其他文件
/// </summary>
[XmlElement("attachment_type")]
public string AttachmentType { get; set; }
/// <summary>
/// 资质文件oss存储key值file_key和file_url至少有1个不能为空
/// </summary>
[XmlElement("file_key")]
public string FileKey { get; set; }
/// <summary>
/// 资质文件urlfile_key和file_url至少有1个不能为空
/// </summary>
[XmlElement("file_url")]
public string FileUrl { get; set; }
/// <summary>
/// 有效结束日期格式YYYY-MM-DD
/// </summary>
[XmlElement("validate_end_time")]
public string ValidateEndTime { get; set; }
/// <summary>
/// 有效开始日期格式YYYY-MM-DD
/// </summary>
[XmlElement("validate_start_time")]
public string ValidateStartTime { get; set; }
}
}