/* Options: Date: 2025-09-23 03:00:29 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteApplication.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DeleteApplicationResponse implements IConvertible { String? message; HttpStatusCode? status; DeleteApplicationResponse({this.message,this.status}); DeleteApplicationResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { message = json['message']; status = JsonConverters.fromJson(json['status'],'HttpStatusCode',context!); return this; } Map toJson() => { 'message': message, 'status': JsonConverters.toJson(status,'HttpStatusCode',context!) }; getTypeName() => "DeleteApplicationResponse"; TypeContext? context = _ctx; } // @Route("/applications/{id}", "DELETE") class DeleteApplication implements IReturn, IConvertible { String? id; DeleteApplication({this.id}); DeleteApplication.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => DeleteApplicationResponse(); getResponseTypeName() => "DeleteApplicationResponse"; getTypeName() => "DeleteApplication"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'accounts.dev.healthmonix.com', types: { 'DeleteApplicationResponse': TypeInfo(TypeOf.Class, create:() => DeleteApplicationResponse()), 'HttpStatusCode': TypeInfo(TypeOf.Class, create:() => HttpStatusCode()), 'DeleteApplication': TypeInfo(TypeOf.Class, create:() => DeleteApplication()), });