/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Jwt/Grants
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;
}
}