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