/* Options: Date: 2026-06-01 14:58:26 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: GetTranslationsCount.* //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/translations/count", Verbs="GET") public static class GetTranslationsCount implements IReturn, ITranslationsFilter { public ArrayList Type = null; public String SearchText = null; public String ActualSourceLanguage = null; public ArrayList TargetLanguage = null; public ArrayList Service = null; public ArrayList TranslationStatus = null; public ArrayList Status = null; public ArrayList ProjectIds = null; public Date StartDate = null; public Date EndDate = null; public Boolean ErrorsOnly = null; public ArrayList getType() { return Type; } public GetTranslationsCount setType(ArrayList value) { this.Type = value; return this; } public String getSearchText() { return SearchText; } public GetTranslationsCount setSearchText(String value) { this.SearchText = value; return this; } public String getActualSourceLanguage() { return ActualSourceLanguage; } public GetTranslationsCount setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } public ArrayList getTargetLanguage() { return TargetLanguage; } public GetTranslationsCount setTargetLanguage(ArrayList value) { this.TargetLanguage = value; return this; } public ArrayList getService() { return Service; } public GetTranslationsCount setService(ArrayList value) { this.Service = value; return this; } public ArrayList getTranslationStatus() { return TranslationStatus; } public GetTranslationsCount setTranslationStatus(ArrayList value) { this.TranslationStatus = value; return this; } public ArrayList getStatus() { return Status; } public GetTranslationsCount setStatus(ArrayList value) { this.Status = value; return this; } public ArrayList getProjectIds() { return ProjectIds; } public GetTranslationsCount setProjectIds(ArrayList value) { this.ProjectIds = value; return this; } public Date getStartDate() { return StartDate; } public GetTranslationsCount setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public GetTranslationsCount setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isErrorsOnly() { return ErrorsOnly; } public GetTranslationsCount setErrorsOnly(Boolean value) { this.ErrorsOnly = 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 interface ITranslationsFilter { public ArrayList Type = null; public String SearchText = null; public String ActualSourceLanguage = null; public ArrayList TargetLanguage = null; public ArrayList Service = null; public ArrayList TranslationStatus = null; public ArrayList Status = null; public ArrayList ProjectIds = null; public Date StartDate = null; public Date EndDate = null; public Boolean ErrorsOnly = null; } }