/* Options: Date: 2026-06-01 14:58:29 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: GetConnectors.* //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/connectors", Verbs="GET") public static class GetConnectors implements IReturn { private static Object responseType = ConnectorsProxy.class; public Object getResponseType() { return responseType; } } public static class ConnectorsProxy { public ArrayList Connectors = null; public HashMap LanguagesMapping = null; public ArrayList getConnectors() { return Connectors; } public ConnectorsProxy setConnectors(ArrayList value) { this.Connectors = value; return this; } public HashMap getLanguagesMapping() { return LanguagesMapping; } public ConnectorsProxy setLanguagesMapping(HashMap value) { this.LanguagesMapping = value; return this; } } public static class ConnectorProxy { public String Name = null; public String Title = null; public Integer Count = null; public XliffProxy Xliff = null; public ArrayList SupportedLanguages = null; public String getName() { return Name; } public ConnectorProxy setName(String value) { this.Name = value; return this; } public String getTitle() { return Title; } public ConnectorProxy setTitle(String value) { this.Title = value; return this; } public Integer getCount() { return Count; } public ConnectorProxy setCount(Integer value) { this.Count = value; return this; } public XliffProxy getXliff() { return Xliff; } public ConnectorProxy setXliff(XliffProxy value) { this.Xliff = value; return this; } public ArrayList getSupportedLanguages() { return SupportedLanguages; } public ConnectorProxy setSupportedLanguages(ArrayList value) { this.SupportedLanguages = value; return this; } } public static class XliffProxy { public Boolean IsXliff = null; public Boolean IsFtp = null; public Boolean IsMachineTranslation = null; public Boolean getIsXliff() { return IsXliff; } public XliffProxy setIsXliff(Boolean value) { this.IsXliff = value; return this; } public Boolean getIsFtp() { return IsFtp; } public XliffProxy setIsFtp(Boolean value) { this.IsFtp = value; return this; } public Boolean getIsMachineTranslation() { return IsMachineTranslation; } public XliffProxy setIsMachineTranslation(Boolean value) { this.IsMachineTranslation = value; return this; } } public static class LanguagePairProxy { public LanguageProxy ActualSource = null; public LanguageProxy Target = null; public LanguageProxy getActualSource() { return ActualSource; } public LanguagePairProxy setActualSource(LanguageProxy value) { this.ActualSource = value; return this; } public LanguageProxy getTarget() { return Target; } public LanguagePairProxy setTarget(LanguageProxy value) { this.Target = value; return this; } } public static class LanguageProxy { public String Code = null; public String Name = null; public Integer Count = null; public String getCode() { return Code; } public LanguageProxy setCode(String value) { this.Code = value; return this; } public String getName() { return Name; } public LanguageProxy setName(String value) { this.Name = value; return this; } public Integer getCount() { return Count; } public LanguageProxy setCount(Integer value) { this.Count = value; return this; } } }