/* Options: Date: 2026-08-11 13:20:11 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: EngineCatalogRequest.* //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/catalog", Verbs="GET,OPTIONS") public static class EngineCatalogRequest implements IReturn { private static Object responseType = EngineCatalogResponse.class; public Object getResponseType() { return responseType; } } public static class EngineCatalogResponse { public ArrayList Groups = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getGroups() { return Groups; } public EngineCatalogResponse setGroups(ArrayList value) { this.Groups = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineCatalogResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class WorkflowCatalogGroupView { public String Vertical = null; public String Color = null; public String Pack = null; public ArrayList Triggers = new ArrayList(); public ArrayList Actions = new ArrayList(); public String getVertical() { return Vertical; } public WorkflowCatalogGroupView setVertical(String value) { this.Vertical = value; return this; } public String getColor() { return Color; } public WorkflowCatalogGroupView setColor(String value) { this.Color = value; return this; } public String getPack() { return Pack; } public WorkflowCatalogGroupView setPack(String value) { this.Pack = value; return this; } public ArrayList getTriggers() { return Triggers; } public WorkflowCatalogGroupView setTriggers(ArrayList value) { this.Triggers = value; return this; } public ArrayList getActions() { return Actions; } public WorkflowCatalogGroupView setActions(ArrayList value) { this.Actions = value; return this; } } public static class WorkflowCatalogItemView { public String Name = null; public String Desc = null; public String FieldsJson = null; public String getName() { return Name; } public WorkflowCatalogItemView setName(String value) { this.Name = value; return this; } public String getDesc() { return Desc; } public WorkflowCatalogItemView setDesc(String value) { this.Desc = value; return this; } public String getFieldsJson() { return FieldsJson; } public WorkflowCatalogItemView setFieldsJson(String value) { this.FieldsJson = value; return this; } } }