options['body'] = $body; $this->options['mediaUrl'] = $mediaUrl; } /** * The body * * @param string $body The body * @return $this Fluent Builder */ public function setBody($body) { $this->options['body'] = $body; return $this; } /** * The media_url * * @param string $mediaUrl The media_url * @return $this Fluent Builder */ public function setMediaUrl($mediaUrl) { $this->options['mediaUrl'] = $mediaUrl; 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.Proxy.V1.CreateMessageInteractionOptions ' . implode(' ', $options) . ']'; } }