NewGaoKaoApi/PaymentSDK/AliPay/Domain/LicenseInfo.cs

67 lines
2.5 KiB
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>
/// LicenseInfo Data Structure.
/// </summary>
[Serializable]
public class LicenseInfo : AopObject
{
/// <summary>
/// 证书的认证机构
/// </summary>
[XmlElement("agency")]
public string Agency { get; set; }
/// <summary>
/// 证照过期时间格式yyyy-MM-dd
/// </summary>
[XmlElement("gmt_expire")]
public string GmtExpire { get; set; }
/// <summary>
/// 证照的起始时间证件生效的开始时间格式yyyy-MM-dd
/// </summary>
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 证书id
/// </summary>
[XmlElement("license_id")]
public string LicenseId { get; set; }
/// <summary>
/// 证照名称当type为OTHER时必填
/// </summary>
[XmlElement("license_name")]
public string LicenseName { get; set; }
/// <summary>
/// 证书照片的url
/// </summary>
[XmlElement("pic_url")]
public string PicUrl { get; set; }
/// <summary>
/// 技能或者能力的认证结果,如“高级”
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
/// <summary>
/// 服务者的证书编号,由证书机构颁发的证书编号
/// </summary>
[XmlElement("sequence")]
public string Sequence { get; set; }
/// <summary>
/// 证照类型,允许以下值: TOUR_GUIDE导游证 LEGAL法律职业资格证书 COUNSELOR心理咨询师 DRIVER_TRAIN机动车驾驶员培训许可证 CHEF厨师证 TEACHER教师资格证 LIFE_SAVING救生证 FINANCIAL_PLANNER理财规划师 FINANCIAL_MANAGEMENT金融理财师 BANK银行从业资格 SECURITIES证券从业资格 INSURANCE保险从业资格 FUTURES期货从业资格 FUND基金从业资格 SPECIAL特种经营许可证 POLICE_REGISTER公安备案登记证明 LOCKS_REPAIR锁具修理服务卡公安印章 HEALTH健康证 BEAUTY美容相关证件 MASSAGE按摩师职业证书 TRANSPORT道路运输证 DRIVING驾驶证 TRANSPORT_PERMIT道路运输经营许可 OTHER其他
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}