/* Options: Date: 2024-05-03 01:33:58 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPreRender.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/prerender/{**Path}", "GET") class GetPreRender implements IReturn, IGet, IConvertible { String? path; GetPreRender({this.path}); GetPreRender.fromJson(Map json) { fromMap(json); } fromMap(Map json) { path = json['path']; return this; } Map toJson() => { 'path': path }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "GetPreRender"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'GetPreRender': TypeInfo(TypeOf.Class, create:() => GetPreRender()), });