/* Options: Date: 2026-03-31 18:50:00 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Get4PSBCCompaniesCount.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Returns total number of companies with respect to securable objects */ @Route(Path="/4PSBC/companies/count", Verbs="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) open class Get4PSBCCompaniesCount : IReturn { companion object { private val responseType = Int::class.java } override fun getResponseType(): Any? = Get4PSBCCompaniesCount.responseType }