/* Options: Date: 2026-08-11 12:31:02 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: EngineSandboxRequest.* //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/{WorkflowId}/test", Verbs="POST") public static class EngineSandboxRequest implements IReturn { public Integer WorkflowId = null; public String GraphJson = null; public Integer getWorkflowId() { return WorkflowId; } public EngineSandboxRequest setWorkflowId(Integer value) { this.WorkflowId = value; return this; } public String getGraphJson() { return GraphJson; } public EngineSandboxRequest setGraphJson(String value) { this.GraphJson = value; return this; } private static Object responseType = EngineSandboxResponse.class; public Object getResponseType() { return responseType; } } public static class EngineSandboxResponse { public String Record = null; public ArrayList Results = new ArrayList(); public ArrayList Suppressed = new ArrayList(); public ArrayList NotReached = new ArrayList(); public ArrayList Unreachable = new ArrayList(); public ResponseStatus ResponseStatus = null; public String getRecord() { return Record; } public EngineSandboxResponse setRecord(String value) { this.Record = value; return this; } public ArrayList getResults() { return Results; } public EngineSandboxResponse setResults(ArrayList value) { this.Results = value; return this; } public ArrayList getSuppressed() { return Suppressed; } public EngineSandboxResponse setSuppressed(ArrayList value) { this.Suppressed = value; return this; } public ArrayList getNotReached() { return NotReached; } public EngineSandboxResponse setNotReached(ArrayList value) { this.NotReached = value; return this; } public ArrayList getUnreachable() { return Unreachable; } public EngineSandboxResponse setUnreachable(ArrayList value) { this.Unreachable = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineSandboxResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class WorkflowSandboxStepView { public String NodeId = null; public String Title = null; public String Kind = null; public String Outcome = null; public String Detail = null; public String getNodeId() { return NodeId; } public WorkflowSandboxStepView setNodeId(String value) { this.NodeId = value; return this; } public String getTitle() { return Title; } public WorkflowSandboxStepView setTitle(String value) { this.Title = value; return this; } public String getKind() { return Kind; } public WorkflowSandboxStepView setKind(String value) { this.Kind = value; return this; } public String getOutcome() { return Outcome; } public WorkflowSandboxStepView setOutcome(String value) { this.Outcome = value; return this; } public String getDetail() { return Detail; } public WorkflowSandboxStepView setDetail(String value) { this.Detail = value; return this; } } public static class WorkflowSandboxWriteView { public String What = null; public String Detail = null; public String getWhat() { return What; } public WorkflowSandboxWriteView setWhat(String value) { this.What = value; return this; } public String getDetail() { return Detail; } public WorkflowSandboxWriteView setDetail(String value) { this.Detail = value; return this; } } }