/* Options: Date: 2024-06-02 08:32:06 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ApiVersionQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/version", Verbs="GET") open class ApiVersionQuery : IReturn { companion object { private val responseType = ApiVersionQueryResponse::class.java } override fun getResponseType(): Any? = ApiVersionQuery.responseType } open class ApiVersionQueryResponse { /** * Timestamp when this API was built */ var BuildTime:Date? = null /** * The revision id from which the API was built */ var Sha:String? = null /** * Full version information regarding the current running assemblies of the api */ var InformationalVersion:String? = null /** * The semantic version number of the current running api version, see www.semver.org for more information */ var SemVer:String? = null var ResponseStatus:ResponseStatus? = null }