/* Options: Date: 2026-03-31 18:25:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetSpecificLanguageTranslationsFile.* //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/{Culture}/download", Verbs="GET") public static class GetSpecificLanguageTranslationsFile implements IReturn { public String Culture = null; public String getCulture() { return Culture; } public GetSpecificLanguageTranslationsFile setCulture(String value) { this.Culture = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }