/* Options: Date: 2026-02-10 07:38:49 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: GetWorkflowProfileRequest.* //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/profile", Verbs="Get") public static class GetWorkflowProfileRequest implements IReturn { public Integer workflowId = null; public Integer getWorkflowId() { return workflowId; } public GetWorkflowProfileRequest setWorkflowId(Integer value) { this.workflowId = value; return this; } private static Object responseType = GetWorkflowProfileResponse.class; public Object getResponseType() { return responseType; } } public static class GetWorkflowProfileResponse implements IResponseRequest { public Integer code = null; public String message = null; public ArrayList data = null; public Integer getCode() { return code; } public GetWorkflowProfileResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public GetWorkflowProfileResponse setMessage(String value) { this.message = value; return this; } public ArrayList getData() { return data; } public GetWorkflowProfileResponse setData(ArrayList value) { this.data = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } public static class WorkflowProfileItem { public Integer fileId = null; public String title = null; public String documentCode = null; public String fileKey = null; public String fileUrl = null; public Date updatedAt = null; public String stepTitle = null; public Integer getFileId() { return fileId; } public WorkflowProfileItem setFileId(Integer value) { this.fileId = value; return this; } public String getTitle() { return title; } public WorkflowProfileItem setTitle(String value) { this.title = value; return this; } public String getDocumentCode() { return documentCode; } public WorkflowProfileItem setDocumentCode(String value) { this.documentCode = value; return this; } public String getFileKey() { return fileKey; } public WorkflowProfileItem setFileKey(String value) { this.fileKey = value; return this; } public String getFileUrl() { return fileUrl; } public WorkflowProfileItem setFileUrl(String value) { this.fileUrl = value; return this; } public Date getUpdatedAt() { return updatedAt; } public WorkflowProfileItem setUpdatedAt(Date value) { this.updatedAt = value; return this; } public String getStepTitle() { return stepTitle; } public WorkflowProfileItem setStepTitle(String value) { this.stepTitle = value; return this; } } }