/* Options: Date: 2025-05-04 23:45:30 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGlobalSettings.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GlobalSettingsInfo implements IConvertible { GlobalSettingsInfo(); GlobalSettingsInfo.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "GlobalSettingsInfo"; TypeContext? context = _ctx; } // @Route("/global/settings", "GET") class GetGlobalSettings implements IReturn, IConvertible, IGet { GetGlobalSettings(); GetGlobalSettings.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GlobalSettingsInfo(); getResponseTypeName() => "GlobalSettingsInfo"; getTypeName() => "GetGlobalSettings"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'GlobalSettingsInfo': TypeInfo(TypeOf.Class, create:() => GlobalSettingsInfo()), 'GetGlobalSettings': TypeInfo(TypeOf.Class, create:() => GetGlobalSettings()), });