/* Options: Date: 2024-05-15 03:46:50 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvalidateLastAccessToken.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; // @Route("/jwt-invalidate") class InvalidateLastAccessToken implements IReturn, IConvertible, IPost { InvalidateLastAccessToken(); InvalidateLastAccessToken.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => EmptyResponse(); getResponseTypeName() => "EmptyResponse"; getTypeName() => "InvalidateLastAccessToken"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: { 'InvalidateLastAccessToken': TypeInfo(TypeOf.Class, create:() => InvalidateLastAccessToken()), });