/** * Payload to close a specific TTS context. */ export interface CloseContext { /** The context_id to close. */ contextId: string; /** Must set the close_context to true, to close the specified context. If false, the context will remain open and the text will be ignored. If set to true, the context will close. If it has already been set to flush it will continue flushing. The same context id can be used again but will not be linked to the previous context with the same name. */ closeContext: boolean; }