/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Chat/V2/Service
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Chat/V2/Service/BindingOptions.php (1856B)
options['bindingType'] = $bindingType;
$this->options['identity'] = $identity;
}
/**
* The binding_type
*
* @param string $bindingType The binding_type
* @return $this Fluent Builder
*/
public function setBindingType($bindingType) {
$this->options['bindingType'] = $bindingType;
return $this;
}
/**
* The identity
*
* @param string $identity The identity
* @return $this Fluent Builder
*/
public function setIdentity($identity) {
$this->options['identity'] = $identity;
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.Chat.V2.ReadBindingOptions ' . implode(' ', $options) . ']';
}
}