recording_files = []; } /** * Deletes the recording on the server. * * @param Client $client * * @throws Exception */ public function delete($client) { $client->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"); } }