Viewing file: WebChannelsList.php (1.69 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\FlexApi\V2;
use Twilio\Exceptions\TwilioException; use Twilio\ListResource; use Twilio\Options; use Twilio\Values; use Twilio\Version;
class WebChannelsList extends ListResource { /** * Construct the WebChannelsList * * @param Version $version Version that contains the resource */ public function __construct(Version $version) { parent::__construct($version);
// Path Solution $this->solution = [];
$this->uri = '/WebChats'; }
/** * Create the WebChannelsInstance * * @param string $addressSid The SID of the Conversations Address * @param array|Options $options Optional Arguments * @return WebChannelsInstance Created WebChannelsInstance * @throws TwilioException When an HTTP error occurs. */ public function create(string $addressSid, array $options = []): WebChannelsInstance { $options = new Values($options);
$data = Values::of([ 'AddressSid' => $addressSid, 'ChatFriendlyName' => $options['chatFriendlyName'], 'CustomerFriendlyName' => $options['customerFriendlyName'], 'PreEngagementData' => $options['preEngagementData'], ]);
$payload = $this->version->create('POST', $this->uri, [], $data);
return new WebChannelsInstance($this->version, $payload); }
/** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.FlexApi.V2.WebChannelsList]'; } }
|