/* Options: Date: 2026-04-17 08:51:19 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: GetRelatedItems.* //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/related", Verbs="GET") public static class GetRelatedItems implements IReturn { public ArrayList Ids = null; public ArrayList getIds() { return Ids; } public GetRelatedItems setIds(ArrayList value) { this.Ids = value; return this; } private static Object responseType = RelatedItemsProxy.class; public Object getResponseType() { return responseType; } } public static class RelatedItemsProxy { public Integer TranslationsCount = null; public Integer ProjectsCount = null; public Integer getTranslationsCount() { return TranslationsCount; } public RelatedItemsProxy setTranslationsCount(Integer value) { this.TranslationsCount = value; return this; } public Integer getProjectsCount() { return ProjectsCount; } public RelatedItemsProxy setProjectsCount(Integer value) { this.ProjectsCount = value; return this; } } }