/* Options: Date: 2026-06-01 15:01:12 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: SendForTranslation.* //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/translate", Verbs="POST") public static class SendForTranslation { public ArrayList Ids = null; public CreateProject ProjectData = null; public ArrayList getIds() { return Ids; } public SendForTranslation setIds(ArrayList value) { this.Ids = value; return this; } public CreateProject getProjectData() { return ProjectData; } public SendForTranslation setProjectData(CreateProject value) { this.ProjectData = value; return this; } } @Route(Path="/translations/projects", Verbs="POST") public static class CreateProject implements IReturn, IProjectInfo { public String Title = null; public Date StartDate = null; public Date EndDate = null; public String Description = null; public String Connector = null; public String PoReference = null; public String ActualSourceLanguage = null; public String getTitle() { return Title; } public CreateProject setTitle(String value) { this.Title = value; return this; } public Date getStartDate() { return StartDate; } public CreateProject setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public CreateProject setEndDate(Date value) { this.EndDate = value; return this; } public String getDescription() { return Description; } public CreateProject setDescription(String value) { this.Description = value; return this; } public String getConnector() { return Connector; } public CreateProject setConnector(String value) { this.Connector = value; return this; } public String getPoReference() { return PoReference; } public CreateProject setPoReference(String value) { this.PoReference = value; return this; } public String getActualSourceLanguage() { return ActualSourceLanguage; } public CreateProject setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } private static Object responseType = ProjectProxy.class; public Object getResponseType() { return responseType; } } }