import { CtsAudioInfo } from "./CtsAudioInfo"; /** * CTS multichannel audio continuation */ export interface CtsAudioContinuation { /** * CTS Continuation token for audio stream */ token?: string; /** * Audio information */ audio?: CtsAudioInfo; /** * The service tag of the previous (aborted) request/turn. The service logs this to * correlate multiple reconnects of the same session. */ previousServiceTag?: string; }