NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoContractSignflowsC...

40 lines
1.3 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>
/// AlipayEcoContractSignflowsCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoContractSignflowsCreateModel : AopObject
{
/// <summary>
/// 附件信息附件可作为合同的辅助证明材料无需签署。需通过文件直传接口上传附件获取文件id后添加
/// </summary>
[XmlArray("attachments")]
[XmlArrayItem("attachment")]
public List<Attachment> Attachments { get; set; }
/// <summary>
/// 流程主题(简要概括合同的签署内容)
/// </summary>
[XmlElement("business_scene")]
public string BusinessScene { get; set; }
/// <summary>
/// 流程配置信息(可配置回调地址、物流单号等信息)
/// </summary>
[XmlElement("config_info")]
public ConfigInfoBean ConfigInfo { get; set; }
/// <summary>
/// 模板信息(基于合同模板填充内容生成待签文件,并指定签署人)
/// </summary>
[XmlArray("template_infos")]
[XmlArrayItem("template_info_bean")]
public List<TemplateInfoBean> TemplateInfos { get; set; }
}
}