/* Options: Date: 2025-12-13 02:26:47 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: GetTranslationsProjects.* //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/projects", Verbs="GET") public static class GetTranslationsProjects implements 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 GetTranslationsProjects setType(ArrayList value) { this.Type = value; return this; } public String getSearchText() { return SearchText; } public GetTranslationsProjects setSearchText(String value) { this.SearchText = value; return this; } public String getActualSourceLanguage() { return ActualSourceLanguage; } public GetTranslationsProjects setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } public ArrayList getTargetLanguage() { return TargetLanguage; } public GetTranslationsProjects setTargetLanguage(ArrayList value) { this.TargetLanguage = value; return this; } public ArrayList getService() { return Service; } public GetTranslationsProjects setService(ArrayList value) { this.Service = value; return this; } public ArrayList getTranslationStatus() { return TranslationStatus; } public GetTranslationsProjects setTranslationStatus(ArrayList value) { this.TranslationStatus = value; return this; } public ArrayList getStatus() { return Status; } public GetTranslationsProjects setStatus(ArrayList value) { this.Status = value; return this; } public ArrayList getProjectIds() { return ProjectIds; } public GetTranslationsProjects setProjectIds(ArrayList value) { this.ProjectIds = value; return this; } public Date getStartDate() { return StartDate; } public GetTranslationsProjects setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public GetTranslationsProjects setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isErrorsOnly() { return ErrorsOnly; } public GetTranslationsProjects setErrorsOnly(Boolean value) { this.ErrorsOnly = 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; } }