/* Options: Date: 2024-05-03 03:23:12 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: MqStart.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/mq/start") class MqStart implements IReturn, IConvertible, IPost { MqStart(); MqStart.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "MqStart"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'MqStart': TypeInfo(TypeOf.Class, create:() => MqStart()), });