/home/desid573/public_html/hooks/twilio-php-master/Twilio/Jwt/Grants
NameSizeModeActions
ChatGrant.php29670644editdlrm
ConversationsGrant.php13180644editdlrm
Grant.php3130644editdlrm
IpMessagingGrant.php31190644editdlrm
SyncGrant.php31120644editdlrm
TaskRouterGrant.php22140644editdlrm
VideoGrant.php18930644editdlrm
VoiceGrant.php33340644editdlrm
Edit: /home/desid573/public_html/hooks/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; } }