芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/Jwt/Grants/VideoGrant.php
room; } /** * Set the room to allow access to in the grant * * @param string $roomSidOrName room sid or name * @return $this updated grant */ public function setRoom($roomSidOrName) { $this->room = $roomSidOrName; return $this; } /** * Returns the grant type * * @return string type of the grant */ public function getGrantKey() { return 'video'; } /** * Returns the grant data * * @return array data of the grant */ public function getPayload() { $payload = array(); if ($this->room) { $payload['room'] = $this->room; } return $payload; } }