/home/desid573/public_html/drivers/twilio-php-master/Twilio/Jwt/Grants
Edit: /home/desid573/public_html/drivers/twilio-php-master/Twilio/Jwt/Grants/ConversationsGrant.php (1318B)
configurationProfileSid;
}
/**
* @param string $configurationProfileSid the configuration profile sid
* we want to enable for this grant
*
* @return $this updated grant
*/
public function setConfigurationProfileSid($configurationProfileSid) {
$this->configurationProfileSid = $configurationProfileSid;
return $this;
}
/**
* Returns the grant type
*
* @return string type of the grant
*/
public function getGrantKey() {
return "rtc";
}
/**
* Returns the grant data
*
* @return array data of the grant
*/
public function getPayload() {
$payload = array();
if ($this->configurationProfileSid) {
$payload['configuration_profile_sid'] = $this->configurationProfileSid;
}
return $payload;
}
}