/* Options: Date: 2026-04-14 20:51:51 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Ping.* //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.* /** * Test authentication and connectivity */ @Route(Path="/ping", Verbs="POST") @Api(Description="Test authentication and connectivity") @ApiResponse(Description="Ping response message", StatusCode=200) open class Ping : IReturn { /** * Ping message text */ @ApiMember(Description="Ping message text", IsRequired=true) open var message:String? = null companion object { private val responseType = PingResponse::class.java } override fun getResponseType(): Any? = Ping.responseType } open class PingResponse { open var message:String? = null open var glnNumber:String? = null }