/* Options: Date: 2026-06-01 14:58:31 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: GetPartialSupportByConnectorWarning.* //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/partialsupportbyconnectorwarning", Verbs="GET") public static class GetPartialSupportByConnectorWarning implements IReturn { public String ConnectorName = null; public String ConnectorTitle = null; public String ActualSourceLanguageCode = null; public ArrayList TargetLanguagesCodes = null; public String getConnectorName() { return ConnectorName; } public GetPartialSupportByConnectorWarning setConnectorName(String value) { this.ConnectorName = value; return this; } public String getConnectorTitle() { return ConnectorTitle; } public GetPartialSupportByConnectorWarning setConnectorTitle(String value) { this.ConnectorTitle = value; return this; } public String getActualSourceLanguageCode() { return ActualSourceLanguageCode; } public GetPartialSupportByConnectorWarning setActualSourceLanguageCode(String value) { this.ActualSourceLanguageCode = value; return this; } public ArrayList getTargetLanguagesCodes() { return TargetLanguagesCodes; } public GetPartialSupportByConnectorWarning setTargetLanguagesCodes(ArrayList value) { this.TargetLanguagesCodes = value; return this; } private static Object responseType = LocalizedMessageProxy.class; public Object getResponseType() { return responseType; } } public static class LocalizedMessageProxy { public String Message = null; public String getMessage() { return Message; } public LocalizedMessageProxy setMessage(String value) { this.Message = value; return this; } } }