/* Options: Date: 2026-03-31 20:24:49 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: GetPreview.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class Preview implements IConvertible { Preview(); Preview.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "Preview"; TypeContext? context = _ctx; } // @Route("/preview/{EntityType}/{ID}", "GET") class GetPreview implements IReturn, IConvertible, IGet { String? ID; String? EntityType; GetPreview({this.ID,this.EntityType}); GetPreview.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ID = json['ID']; EntityType = json['EntityType']; return this; } Map toJson() => { 'ID': ID, 'EntityType': EntityType }; createResponse() => Preview(); getResponseTypeName() => "Preview"; getTypeName() => "GetPreview"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'Preview': TypeInfo(TypeOf.Class, create:() => Preview()), 'GetPreview': TypeInfo(TypeOf.Class, create:() => GetPreview()), });