/* Options: Date: 2026-01-09 15:00:14 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LiveAnswerGetLiveKitConfig.* //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="/nodes/live-answer/livekit/config", Verbs="GET") open class LiveAnswerGetLiveKitConfig : IReturn { open var accountSid:String? = null open var callSid:String? = null companion object { private val responseType = LiveAnswerLiveKitConfig::class.java } override fun getResponseType(): Any? = LiveAnswerGetLiveKitConfig.responseType } open class LiveAnswerLiveKitConfig { open var message:String? = null }