NewGaoKaoApi/PaymentSDK/AliPay/Domain/AuditLicenseInfo.cs

45 lines
1.5 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AuditLicenseInfo Data Structure.
/// </summary>
[Serializable]
public class AuditLicenseInfo : AopObject
{
/// <summary>
/// 营业执照名称,需要与营业执照保持一致
/// </summary>
[XmlElement("license_name")]
public string LicenseName { get; set; }
/// <summary>
/// 营业执照号部分小程序类目需要提交参照https://docs.alipay.com/isv/10325中是否需要营业执照信息如果不填默认采用当前小程序应用营业执照号。
/// </summary>
[XmlElement("license_no")]
public string LicenseNo { get; set; }
/// <summary>
/// 营业执照照片地址列表
/// </summary>
[XmlArray("license_pic_list")]
[XmlArrayItem("string")]
public List<string> LicensePicList { get; set; }
/// <summary>
/// 营业执有效期格式为yyyy-MM-dd9999-12-31表示长期
/// </summary>
[XmlElement("license_valid_date")]
public string LicenseValidDate { get; set; }
/// <summary>
/// 门头照图片地址部分小程序类目需要提交参照https://docs.alipay.com/isv/10325中是否需要营业执照信息如果不填默认采用当前小程序门头照图片
/// </summary>
[XmlElement("out_door_pic")]
public string OutDoorPic { get; set; }
}
}