/* Options: Date: 2026-06-28 14:56:59 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetLegalApprovalRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/WorkflowStep/set-legal-approval", Verbs="Post") public static class SetLegalApprovalRequest implements IReturn { public Integer workflowId = null; public Boolean enabled = null; public Integer getWorkflowId() { return workflowId; } public SetLegalApprovalRequest setWorkflowId(Integer value) { this.workflowId = value; return this; } public Boolean isEnabled() { return enabled; } public SetLegalApprovalRequest setEnabled(Boolean value) { this.enabled = value; return this; } private static Object responseType = SetLegalApprovalResponse.class; public Object getResponseType() { return responseType; } } public static class SetLegalApprovalResponse implements IResponseRequest { public Integer code = null; public String message = null; public Boolean enabled = null; public Integer getCode() { return code; } public SetLegalApprovalResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public SetLegalApprovalResponse setMessage(String value) { this.message = value; return this; } public Boolean isEnabled() { return enabled; } public SetLegalApprovalResponse setEnabled(Boolean value) { this.enabled = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } }