2018-01-27 19:39:49 +01:00

5 lines
300 B
TypeScript

export enum ArchiveMode {
ALWAYS = 'ALWAYS', // The session is archived automatically (as soon as there are clients publishing streams to the session)
MANUAL = 'MANUAL' // The session is not archived automatically. To archive the session, you can call the OpenVidu.StartArchive() method
}