/* Options: Date: 2026-08-11 14:14:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EngineTemplatesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/engine/templates", Verbs="GET,OPTIONS") public static class EngineTemplatesRequest implements IReturn { private static Object responseType = EngineTemplatesResponse.class; public Object getResponseType() { return responseType; } } public static class EngineTemplatesResponse { public ArrayList Templates = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getTemplates() { return Templates; } public EngineTemplatesResponse setTemplates(ArrayList value) { this.Templates = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineTemplatesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class WorkflowTemplateView { public String TemplateKey = null; public String Name = null; public String Pack = null; public ArrayList Verticals = new ArrayList(); public String RefSourceKey = null; public String GraphJson = null; public Integer StepCount = null; public Integer Installs = null; public String Description = null; public String getTemplateKey() { return TemplateKey; } public WorkflowTemplateView setTemplateKey(String value) { this.TemplateKey = value; return this; } public String getName() { return Name; } public WorkflowTemplateView setName(String value) { this.Name = value; return this; } public String getPack() { return Pack; } public WorkflowTemplateView setPack(String value) { this.Pack = value; return this; } public ArrayList getVerticals() { return Verticals; } public WorkflowTemplateView setVerticals(ArrayList value) { this.Verticals = value; return this; } public String getRefSourceKey() { return RefSourceKey; } public WorkflowTemplateView setRefSourceKey(String value) { this.RefSourceKey = value; return this; } public String getGraphJson() { return GraphJson; } public WorkflowTemplateView setGraphJson(String value) { this.GraphJson = value; return this; } public Integer getStepCount() { return StepCount; } public WorkflowTemplateView setStepCount(Integer value) { this.StepCount = value; return this; } public Integer getInstalls() { return Installs; } public WorkflowTemplateView setInstalls(Integer value) { this.Installs = value; return this; } public String getDescription() { return Description; } public WorkflowTemplateView setDescription(String value) { this.Description = value; return this; } } }