/* Options: Date: 2024-10-18 04:25:39 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSpecificLanguageTranslationsFile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/translations/{Culture}/download", "GET") class GetSpecificLanguageTranslationsFile implements IReturn, IConvertible { String? Culture; GetSpecificLanguageTranslationsFile({this.Culture}); GetSpecificLanguageTranslationsFile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Culture = json['Culture']; return this; } Map toJson() => { 'Culture': Culture }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetSpecificLanguageTranslationsFile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'GetSpecificLanguageTranslationsFile': TypeInfo(TypeOf.Class, create:() => GetSpecificLanguageTranslationsFile()), });