/* Options: Date: 2026-08-11 12:31: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: EngineWorkflowsRequest.* //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/workflows", Verbs="GET,OPTIONS") public static class EngineWorkflowsRequest implements IReturn { private static Object responseType = EngineWorkflowsResponse.class; public Object getResponseType() { return responseType; } } public static class EngineWorkflowsResponse { public ArrayList Workflows = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getWorkflows() { return Workflows; } public EngineWorkflowsResponse setWorkflows(ArrayList value) { this.Workflows = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineWorkflowsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class WorkflowView { public Integer WorkflowId = null; public String SourceKey = null; public String Name = null; public String Vertical = null; public String Pack = null; public String Status = null; public Integer VersionNum = null; public String Description = null; public String OwnerRole = null; public String GraphJson = null; public Integer Ok30 = null; public Integer Fail30 = null; public Integer Waiting = null; public String UpdatedBy = null; public Date UpdatedAt = null; public ArrayList Versions = new ArrayList(); public Integer getWorkflowId() { return WorkflowId; } public WorkflowView setWorkflowId(Integer value) { this.WorkflowId = value; return this; } public String getSourceKey() { return SourceKey; } public WorkflowView setSourceKey(String value) { this.SourceKey = value; return this; } public String getName() { return Name; } public WorkflowView setName(String value) { this.Name = value; return this; } public String getVertical() { return Vertical; } public WorkflowView setVertical(String value) { this.Vertical = value; return this; } public String getPack() { return Pack; } public WorkflowView setPack(String value) { this.Pack = value; return this; } public String getStatus() { return Status; } public WorkflowView setStatus(String value) { this.Status = value; return this; } public Integer getVersionNum() { return VersionNum; } public WorkflowView setVersionNum(Integer value) { this.VersionNum = value; return this; } public String getDescription() { return Description; } public WorkflowView setDescription(String value) { this.Description = value; return this; } public String getOwnerRole() { return OwnerRole; } public WorkflowView setOwnerRole(String value) { this.OwnerRole = value; return this; } public String getGraphJson() { return GraphJson; } public WorkflowView setGraphJson(String value) { this.GraphJson = value; return this; } public Integer getOk30() { return Ok30; } public WorkflowView setOk30(Integer value) { this.Ok30 = value; return this; } public Integer getFail30() { return Fail30; } public WorkflowView setFail30(Integer value) { this.Fail30 = value; return this; } public Integer getWaiting() { return Waiting; } public WorkflowView setWaiting(Integer value) { this.Waiting = value; return this; } public String getUpdatedBy() { return UpdatedBy; } public WorkflowView setUpdatedBy(String value) { this.UpdatedBy = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public WorkflowView setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } public ArrayList getVersions() { return Versions; } public WorkflowView setVersions(ArrayList value) { this.Versions = value; return this; } } public static class WorkflowVersionInfo { public Integer VersionNum = null; public String Status = null; public String CreatedBy = null; public Date CreatedAt = null; public Date PublishedAt = null; public Integer getVersionNum() { return VersionNum; } public WorkflowVersionInfo setVersionNum(Integer value) { this.VersionNum = value; return this; } public String getStatus() { return Status; } public WorkflowVersionInfo setStatus(String value) { this.Status = value; return this; } public String getCreatedBy() { return CreatedBy; } public WorkflowVersionInfo setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public WorkflowVersionInfo setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getPublishedAt() { return PublishedAt; } public WorkflowVersionInfo setPublishedAt(Date value) { this.PublishedAt = value; return this; } } }