/* Options: Date: 2026-03-31 20:26:17 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Get4PSBCPersonsCount.* //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 persons with respect to securable objects */ @Route(Path="/4PSBC/persons/count", Verbs="GET") @Api(Description="Returns total number of persons with respect to securable objects") @ApiResponse(Description="Number of persons are returned in the message body", IsDefaultResponse=true, StatusCode=200) open class Get4PSBCPersonsCount : IReturn { companion object { private val responseType = Int::class.java } override fun getResponseType(): Any? = Get4PSBCPersonsCount.responseType }