/* Options: Date: 2026-06-01 14:58:32 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: GetTranslationReview.* //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/review/{id}", Verbs="GET") public static class GetTranslationReview implements IReturn { public UUID Id = null; public UUID getId() { return Id; } public GetTranslationReview setId(UUID value) { this.Id = value; return this; } private static Object responseType = TranslationReviewProxy.class; public Object getResponseType() { return responseType; } } public static class TranslationReviewProxy { public String ActualSourceLanguage = null; public String TargetLanguage = null; public String ItemType = null; public IList UnitGroups = null; public String getActualSourceLanguage() { return ActualSourceLanguage; } public TranslationReviewProxy setActualSourceLanguage(String value) { this.ActualSourceLanguage = value; return this; } public String getTargetLanguage() { return TargetLanguage; } public TranslationReviewProxy setTargetLanguage(String value) { this.TargetLanguage = value; return this; } public String getItemType() { return ItemType; } public TranslationReviewProxy setItemType(String value) { this.ItemType = value; return this; } public IList getUnitGroups() { return UnitGroups; } public TranslationReviewProxy setUnitGroups(IList value) { this.UnitGroups = value; return this; } } public static class TranslationUnitGroupProxy { public String Name = null; public IList Units = null; public String getName() { return Name; } public TranslationUnitGroupProxy setName(String value) { this.Name = value; return this; } public IList getUnits() { return Units; } public TranslationUnitGroupProxy setUnits(IList value) { this.Units = value; return this; } } public static class TranslationUnitProxy { public String PropertyName = null; public String SourceValue = null; public String TargetValue = null; public String getPropertyName() { return PropertyName; } public TranslationUnitProxy setPropertyName(String value) { this.PropertyName = value; return this; } public String getSourceValue() { return SourceValue; } public TranslationUnitProxy setSourceValue(String value) { this.SourceValue = value; return this; } public String getTargetValue() { return TargetValue; } public TranslationUnitProxy setTargetValue(String value) { this.TargetValue = value; return this; } } }