using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcoSignflowsDetailQueryResponse. /// public class AlipayEcoSignflowsDetailQueryResponse : AopResponse { /// /// 创建流程时平台上传的附件及签署时用户上传的附件或身份证 /// [XmlElement("attachments")] public AttachmentDetail Attachments { get; set; } /// /// 已签署完成文件列表 /// [XmlElement("docs")] public DocInfo Docs { get; set; } } }