/* Options: Date: 2026-01-12 04:57:21 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://p4.smartdatasolutions.eu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Status.* //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.* @Route(Path="/status") open class Status : Generic(), IReturn, IGet { companion object { private val responseType = StatusResponse::class.java } override fun getResponseType(): Any? = Status.responseType } open class StatusResponse { open var result:String? = null } open class Generic { /** * Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY */ @ApiMember(DataType="String", Description="Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY", IsRequired=true, Name="ApiKey") open var apiKey:String? = null }