/* Options: Date: 2026-06-28 01:09:27 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: GetLegalApprovalConfigRequest.* //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/legal-approval-config", Verbs="Get") public static class GetLegalApprovalConfigRequest implements IReturn { public Integer workflowId = null; public Integer getWorkflowId() { return workflowId; } public GetLegalApprovalConfigRequest setWorkflowId(Integer value) { this.workflowId = value; return this; } private static Object responseType = GetLegalApprovalConfigResponse.class; public Object getResponseType() { return responseType; } } public static class GetLegalApprovalConfigResponse implements IResponseRequest { public Integer code = null; public String message = null; public Boolean enabled = null; public ArrayList approvers = null; public Integer getCode() { return code; } public GetLegalApprovalConfigResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public GetLegalApprovalConfigResponse setMessage(String value) { this.message = value; return this; } public Boolean isEnabled() { return enabled; } public GetLegalApprovalConfigResponse setEnabled(Boolean value) { this.enabled = value; return this; } public ArrayList getApprovers() { return approvers; } public GetLegalApprovalConfigResponse setApprovers(ArrayList value) { this.approvers = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } public static class StampClerkOption { public Integer id = null; public String fullName = null; public String departmentName = null; public Integer getId() { return id; } public StampClerkOption setId(Integer value) { this.id = value; return this; } public String getFullName() { return fullName; } public StampClerkOption setFullName(String value) { this.fullName = value; return this; } public String getDepartmentName() { return departmentName; } public StampClerkOption setDepartmentName(String value) { this.departmentName = value; return this; } } }