options['routing'] = $routing; } /** * Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`. * * @param array $routing Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`. * @return $this Fluent Builder */ public function setRouting(array $routing): self { $this->options['routing'] = $routing; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.FlexApi.V1.UpdateInteractionChannelOptions ' . $options . ']'; } }