/* Options: Date: 2026-03-31 20:12:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Get4PSBCCompaniesCount.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Returns total number of companies with respect to securable objects */ // @Route("/4PSBC/companies/count", "GET") // @Api(Description="Returns total number of companies with respect to securable objects") // @ApiResponse(Description="Number of companies are returned in the message body", IsDefaultResponse=true, StatusCode=200) class Get4PSBCCompaniesCount implements IReturn, IConvertible, IGet { Get4PSBCCompaniesCount(); Get4PSBCCompaniesCount.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => 0; getResponseTypeName() => "int"; getTypeName() => "Get4PSBCCompaniesCount"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'Get4PSBCCompaniesCount': TypeInfo(TypeOf.Class, create:() => Get4PSBCCompaniesCount()), });