NewGaoKaoApi/PaymentSDK/AliPay/Domain/AttachmentExplain.cs

39 lines
1.1 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>
/// AttachmentExplain Data Structure.
/// </summary>
[Serializable]
public class AttachmentExplain : AopObject
{
/// <summary>
/// 允许上传更多附件。开启后除了“附件列表”中指定的内容签署人可自由上传之多10张图片。默认值为false
/// </summary>
[XmlElement("allow_more_uploads")]
public bool AllowMoreUploads { get; set; }
/// <summary>
/// 描述
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 附件列表
/// </summary>
[XmlArray("details")]
[XmlArrayItem("detail")]
public List<Detail> Details { get; set; }
/// <summary>
/// 附件标题collect_attachement值为true时必填
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}