Viewing file: MessageInteractionOptions.php (1.92 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\Proxy\V1\Service\Session\Participant;
use Twilio\Options; use Twilio\Values;
/** * PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution. */ abstract class MessageInteractionOptions { /** * @param string $body Message body * @param string[] $mediaUrl Reserved * @return CreateMessageInteractionOptions Options builder */ public static function create(string $body = Values::NONE, array $mediaUrl = Values::ARRAY_NONE): CreateMessageInteractionOptions { return new CreateMessageInteractionOptions($body, $mediaUrl); } }
class CreateMessageInteractionOptions extends Options { /** * @param string $body Message body * @param string[] $mediaUrl Reserved */ public function __construct(string $body = Values::NONE, array $mediaUrl = Values::ARRAY_NONE) { $this->options['body'] = $body; $this->options['mediaUrl'] = $mediaUrl; }
/** * The message to send to the participant * * @param string $body Message body * @return $this Fluent Builder */ public function setBody(string $body): self { $this->options['body'] = $body; return $this; }
/** * Reserved. Not currently supported. * * @param string[] $mediaUrl Reserved * @return $this Fluent Builder */ public function setMediaUrl(array $mediaUrl): self { $this->options['mediaUrl'] = $mediaUrl; 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.Proxy.V1.CreateMessageInteractionOptions ' . $options . ']'; } }
|