/* Options: Date: 2025-12-15 05:15:36 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: FindTranslations.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/translations/translations", Verbs="GET") public static class FindTranslations implements IReturn>, ITranslationsFilter { public Integer Skip = null; public Integer Take = null; public String OrderExpression = null; 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 Integer getSkip() { return Skip; } public FindTranslations setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public FindTranslations setTake(Integer value) { this.Take = value; return this; } public String getOrderExpression() { return OrderExpression; } public FindTranslations setOrderExpression(String value) { this.OrderExpression = value; return this; } public ArrayList getType() { return Type; } public FindTranslations setType(ArrayList value) { this.Type = value; return this; } public String getSearchText() { return SearchText; } public FindTranslations setSearchText(String value) { this.SearchText = value; return this; } public String getActualSourceLanguage() { return ActualSourceLanguage; } public FindTranslations setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } public ArrayList getTargetLanguage() { return TargetLanguage; } public FindTranslations setTargetLanguage(ArrayList value) { this.TargetLanguage = value; return this; } public ArrayList getService() { return Service; } public FindTranslations setService(ArrayList value) { this.Service = value; return this; } public ArrayList getTranslationStatus() { return TranslationStatus; } public FindTranslations setTranslationStatus(ArrayList value) { this.TranslationStatus = value; return this; } public ArrayList getStatus() { return Status; } public FindTranslations setStatus(ArrayList value) { this.Status = value; return this; } public ArrayList getProjectIds() { return ProjectIds; } public FindTranslations setProjectIds(ArrayList value) { this.ProjectIds = value; return this; } public Date getStartDate() { return StartDate; } public FindTranslations setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public FindTranslations setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isErrorsOnly() { return ErrorsOnly; } public FindTranslations setErrorsOnly(Boolean value) { this.ErrorsOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } 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; } }