/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Jwt/Grants
NameSizeModeActions
ChatGrant.php29670644editdlrm
Grant.php3130644editdlrm
SyncGrant.php31120644editdlrm
TaskRouterGrant.php22140644editdlrm
VideoGrant.php9730644editdlrm
VoiceGrant.php40460644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Jwt/Grants/VideoGrant.php (973B)
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; } }