/home/desid573/public_html/payment/pdd/app/Vendor/Services/Twilio/Auth
Edit: /home/desid573/public_html/payment/pdd/app/Vendor/Services/Twilio/Auth/ConversationsGrant.php (1239B)
configurationProfileSid;
}
/**
* @param string $configurationProfileSid the configuration profile sid
* we want to enable for this grant
*
* @return Services_Twilio_Auth_ConversationsGrant 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;
}
}