/* Options: Date: 2026-08-11 12:31:04 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: EngineWorkflowPauseRequest.* //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}/pause", Verbs="POST") // @Route(Path="/v1/engine/workflows/{WorkflowId}/resume", Verbs="POST") public static class EngineWorkflowPauseRequest implements IReturn { public Integer WorkflowId = null; public Integer getWorkflowId() { return WorkflowId; } public EngineWorkflowPauseRequest setWorkflowId(Integer value) { this.WorkflowId = value; return this; } private static Object responseType = EngineWorkflowMutationResponse.class; public Object getResponseType() { return responseType; } } public static class EngineWorkflowMutationResponse { public Integer WorkflowId = null; public Integer VersionNum = null; public Boolean Forked = null; public String Status = null; public Integer ChangeRequestId = null; public ResponseStatus ResponseStatus = null; public Integer getWorkflowId() { return WorkflowId; } public EngineWorkflowMutationResponse setWorkflowId(Integer value) { this.WorkflowId = value; return this; } public Integer getVersionNum() { return VersionNum; } public EngineWorkflowMutationResponse setVersionNum(Integer value) { this.VersionNum = value; return this; } public Boolean isForked() { return Forked; } public EngineWorkflowMutationResponse setForked(Boolean value) { this.Forked = value; return this; } public String getStatus() { return Status; } public EngineWorkflowMutationResponse setStatus(String value) { this.Status = value; return this; } public Integer getChangeRequestId() { return ChangeRequestId; } public EngineWorkflowMutationResponse setChangeRequestId(Integer value) { this.ChangeRequestId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineWorkflowMutationResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }