options['bindingType'] = $bindingType; } /** * The binding_type * * @param string $bindingType The binding_type * @return $this Fluent Builder */ public function setBindingType($bindingType) { $this->options['bindingType'] = $bindingType; 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.ReadUserBindingOptions ' . implode(' ', $options) . ']'; } }