options['body'] = $body; $this->options['mediaUrl'] = $mediaUrl; } /** * The text body of the message to send to the Participant. Up to 1600 characters long. * * @param string $body The body of the message. Up to 1600 characters long. * @return $this Fluent Builder */ public function setBody($body) { $this->options['body'] = $body; return $this; } /** * The public url of an image or video to send to the Participant. * * @param string $mediaUrl The url of an image or video. * @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.Preview.Proxy.CreateMessageInteractionOptions ' . implode(' ', $options) . ']'; } }