recording_files = []; } /** * Deletes the recording on the server. * * @throws Exception */ public function delete() { Client::getInstance()->send( 'DELETE', 'meetings/'.htmlentities($this->uuid).'/recordings', ['action' => 'delete'] ); } /** * {@inheritdoc} */ public function itemClass($propertyName) { if ('recording_files' === $propertyName) { return RecordingFile::class; } throw new Exception("No such array property $propertyName"); } }