/* Options: Date: 2025-09-03 19:55:43 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteApiKeyRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class DeleteOperationUnTenanted implements IDelete { DeleteOperationUnTenanted(); DeleteOperationUnTenanted.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "DeleteOperationUnTenanted<$TResponse>"; TypeContext? context = _ctx; } class DeleteApiKeyResponse implements IConvertible { ResponseStatus? responseStatus; DeleteApiKeyResponse({this.responseStatus}); DeleteApiKeyResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "DeleteApiKeyResponse"; TypeContext? context = _ctx; } // @Route("/auth/apikey/{Id}", "DELETE") class DeleteApiKeyRequest extends DeleteOperationUnTenanted implements IReturn, IConvertible { String? id; DeleteApiKeyRequest({this.id}); DeleteApiKeyRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); id = json['id']; return this; } Map toJson() => super.toJson()..addAll({ 'id': id }); createResponse() => DeleteApiKeyResponse(); getResponseTypeName() => "DeleteApiKeyResponse"; getTypeName() => "DeleteApiKeyRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'foundrystage_api_app.azurewebsites.net', types: { 'DeleteOperationUnTenanted': TypeInfo(TypeOf.AbstractClass), 'DeleteApiKeyResponse': TypeInfo(TypeOf.Class, create:() => DeleteApiKeyResponse()), 'DeleteApiKeyRequest': TypeInfo(TypeOf.Class, create:() => DeleteApiKeyRequest()), });