/* Options: Date: 2024-12-15 19:56:16 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetHealthCheckRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/health", Verbs="GET") open class GetHealthCheckRequest : GetOperationUnTenanted(), IReturn { companion object { private val responseType = GetHealthCheckResponse::class.java } override fun getResponseType(): Any? = GetHealthCheckRequest.responseType } open class GetHealthCheckResponse { var responseStatus:ResponseStatus? = null var name:String? = null var version:String? = null var status:String? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? }