/* Options: Date: 2025-12-06 13:20:39 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: DocumentApproveRequest.* //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="/document/approve", Verbs="POST") public static class DocumentApproveRequest implements IReturn, IPost { public Integer documentId = null; public String submitComment = null; public Integer nextApproverId = null; public Date dueDate = null; public Integer getDocumentId() { return documentId; } public DocumentApproveRequest setDocumentId(Integer value) { this.documentId = value; return this; } public String getSubmitComment() { return submitComment; } public DocumentApproveRequest setSubmitComment(String value) { this.submitComment = value; return this; } public Integer getNextApproverId() { return nextApproverId; } public DocumentApproveRequest setNextApproverId(Integer value) { this.nextApproverId = value; return this; } public Date getDueDate() { return dueDate; } public DocumentApproveRequest setDueDate(Date value) { this.dueDate = value; return this; } private static Object responseType = ApprovalResponse.class; public Object getResponseType() { return responseType; } } public static class ApprovalResponse implements IResponseRequest { public Integer code = null; public String message = null; public Integer getCode() { return code; } public ApprovalResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public ApprovalResponse setMessage(String value) { this.message = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } }