/* Options: Date: 2025-07-04 13:01:56 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSpecificLanguageTranslations.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetSpecificLanguageTranslations implements IReturn>>, IConvertible, IGet { String? Culture; GetSpecificLanguageTranslations({this.Culture}); GetSpecificLanguageTranslations.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Culture = json['Culture']; return this; } Map toJson() => { 'Culture': Culture }; createResponse() => >[]; getResponseTypeName() => "List>"; getTypeName() => "GetSpecificLanguageTranslations"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetSpecificLanguageTranslations': TypeInfo(TypeOf.Class, create:() => GetSpecificLanguageTranslations()), });