/* Options: Date: 2026-03-31 17:06:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPrinters.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/printers", "GET") class GetPrinters implements IReturn>, IConvertible, IGet { GetPrinters(); GetPrinters.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetPrinters"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'Printer': TypeInfo(TypeOf.Class, create:() => Printer()), 'GetPrinters': TypeInfo(TypeOf.Class, create:() => GetPrinters()), });