/* Options: Date: 2026-03-21 14:06:05 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MergeFileRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/merge-file", Verbs="POST") public static class MergeFileRequest implements IReturn { public Integer workflowId = null; public TemplateDefinitionDto template = null; public HashMap elements = null; public Integer getWorkflowId() { return workflowId; } public MergeFileRequest setWorkflowId(Integer value) { this.workflowId = value; return this; } public TemplateDefinitionDto getTemplate() { return template; } public MergeFileRequest setTemplate(TemplateDefinitionDto value) { this.template = value; return this; } public HashMap getElements() { return elements; } public MergeFileRequest setElements(HashMap value) { this.elements = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } public static class TemplateDefinitionDto { public Integer id = null; public Integer documentId = null; public String title = null; public String description = null; public Boolean isActive = null; public Integer getId() { return id; } public TemplateDefinitionDto setId(Integer value) { this.id = value; return this; } public Integer getDocumentId() { return documentId; } public TemplateDefinitionDto setDocumentId(Integer value) { this.documentId = value; return this; } public String getTitle() { return title; } public TemplateDefinitionDto setTitle(String value) { this.title = value; return this; } public String getDescription() { return description; } public TemplateDefinitionDto setDescription(String value) { this.description = value; return this; } public Boolean getIsActive() { return isActive; } public TemplateDefinitionDto setIsActive(Boolean value) { this.isActive = value; return this; } } public static class ElementInputDto { public Object value = null; public String dataType = null; public Object getValue() { return value; } public ElementInputDto setValue(Object value) { this.value = value; return this; } public String getDataType() { return dataType; } public ElementInputDto setDataType(String value) { this.dataType = value; return this; } } }