/* Options: Date: 2025-05-05 21:09:20 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-auth-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: HealthCheck.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class HealthCheckResponse implements IConvertible { String? status; String? version; HealthCheckResponse({this.status,this.version}); HealthCheckResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { status = json['status']; version = json['version']; return this; } Map toJson() => { 'status': status, 'version': version }; getTypeName() => "HealthCheckResponse"; TypeContext? context = _ctx; } // @Route("/v1/healthcheck", "GET") class HealthCheck implements IReturn, IConvertible, IGet { HealthCheck(); HealthCheck.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => HealthCheckResponse(); getResponseTypeName() => "HealthCheckResponse"; getTypeName() => "HealthCheck"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'prod_api_auth_mb_dhc.rapp_customers.co.uk', types: { 'HealthCheckResponse': TypeInfo(TypeOf.Class, create:() => HealthCheckResponse()), 'HealthCheck': TypeInfo(TypeOf.Class, create:() => HealthCheck()), });