/* Options: Date: 2026-04-02 04:06:50 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProjectsCount.* //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="/translations/projects/count", Verbs="GET") public static class GetProjectsCount implements IReturn, IProjectsFilter { public Integer Skip = null; public Integer Take = null; public String OrderExpression = null; public String SearchText = null; public ArrayList Service = null; public ProjectStatus ProjectStatus = null; public String ActualSourceLanguage = null; public Boolean WithoutSourceLanguage = null; public Integer getSkip() { return Skip; } public GetProjectsCount setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public GetProjectsCount setTake(Integer value) { this.Take = value; return this; } public String getOrderExpression() { return OrderExpression; } public GetProjectsCount setOrderExpression(String value) { this.OrderExpression = value; return this; } public String getSearchText() { return SearchText; } public GetProjectsCount setSearchText(String value) { this.SearchText = value; return this; } public ArrayList getService() { return Service; } public GetProjectsCount setService(ArrayList value) { this.Service = value; return this; } public ProjectStatus getProjectStatus() { return ProjectStatus; } public GetProjectsCount setProjectStatus(ProjectStatus value) { this.ProjectStatus = value; return this; } public String getActualSourceLanguage() { return ActualSourceLanguage; } public GetProjectsCount setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } public Boolean isWithoutSourceLanguage() { return WithoutSourceLanguage; } public GetProjectsCount setWithoutSourceLanguage(Boolean value) { this.WithoutSourceLanguage = value; return this; } private static Object responseType = CountProxy.class; public Object getResponseType() { return responseType; } } public static class CountProxy { public Integer TotalCount = null; public Integer getTotalCount() { return TotalCount; } public CountProxy setTotalCount(Integer value) { this.TotalCount = value; return this; } } public static enum ProjectStatus { NotStarted, Started, Completed; } public static interface IProjectsFilter { public String SearchText = null; public ArrayList Service = null; public ProjectStatus ProjectStatus = null; public String ActualSourceLanguage = null; public Boolean WithoutSourceLanguage = null; } }