/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Api/V2010/Account
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Api/V2010/Account/NewKeyOptions.php (1436B)
options['friendlyName'] = $friendlyName;
}
/**
* The friendly_name
*
* @param string $friendlyName The friendly_name
* @return $this Fluent Builder
*/
public function setFriendlyName($friendlyName) {
$this->options['friendlyName'] = $friendlyName;
return $this;
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$options = array();
foreach ($this->options as $key => $value) {
if ($value != Values::NONE) {
$options[] = "$key=$value";
}
}
return '[Twilio.Api.V2010.CreateNewKeyOptions ' . implode(' ', $options) . ']';
}
}