/* Options: Date: 2026-06-16 14:45:54 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: ProvisionCogito.* //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.* /** * Ensures that a SIP trunk is provisioned for Cogito and that a corresponding outbound SIP trunk is also created on the LiveKit side */ @Route(Path="/endpoints/cogito/provision", Verbs="POST") @Api(Description="Ensures that a SIP trunk is provisioned for Cogito and that a corresponding outbound SIP trunk is also created on the LiveKit side") open class ProvisionCogito : IReturn { /** * The ID of the account to associate the number with */ @ApiMember(Description="The ID of the account to associate the number with") open var accountId:String? = null companion object { private val responseType = ProvisionCogitoResponse::class.java } override fun getResponseType(): Any? = ProvisionCogito.responseType } open class ProvisionCogitoResponse { open var sipTrunkId:String? = null open var createdNewSipTrunk:Boolean? = null open var createdLiveKitTrunk:Boolean? = null }