PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Taskrouter
/
V1
/
Workspace
/
Worker
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Taskrouter\V1\Workspace\Worker; use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Options; use Twilio\Serialize; use Twilio\Values; use Twilio\Version; class WorkerChannelContext extends InstanceContext { /** * Initialize the WorkerChannelContext * * @param Version $version Version that contains the resource * @param string $workspaceSid The SID of the Workspace with the WorkerChannel * to fetch * @param string $workerSid The SID of the Worker with the WorkerChannel to * fetch * @param string $sid The SID of the to fetch */ public function __construct(Version $version, $workspaceSid, $workerSid, $sid) { parent::__construct($version); // Path Solution $this->solution = ['workspaceSid' => $workspaceSid, 'workerSid' => $workerSid, 'sid' => $sid, ]; $this->uri = '/Workspaces/' . \rawurlencode($workspaceSid) . '/Workers/' . \rawurlencode($workerSid) . '/Channels/' . \rawurlencode($sid) . ''; } /** * Fetch the WorkerChannelInstance * * @return WorkerChannelInstance Fetched WorkerChannelInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): WorkerChannelInstance { $payload = $this->version->fetch('GET', $this->uri); return new WorkerChannelInstance( $this->version, $payload, $this->solution['workspaceSid'], $this->solution['workerSid'], $this->solution['sid'] ); } /** * Update the WorkerChannelInstance * * @param array|Options $options Optional Arguments * @return WorkerChannelInstance Updated WorkerChannelInstance * @throws TwilioException When an HTTP error occurs. */ public function update(array $options = []): WorkerChannelInstance { $options = new Values($options); $data = Values::of([ 'Capacity' => $options['capacity'], 'Available' => Serialize::booleanToString($options['available']), ]); $payload = $this->version->update('POST', $this->uri, [], $data); return new WorkerChannelInstance( $this->version, $payload, $this->solution['workspaceSid'], $this->solution['workerSid'], $this->solution['sid'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Taskrouter.V1.WorkerChannelContext ' . \implode(' ', $context) . ']'; } }
[-] WorkersCumulativeStatisticsPage.php
[edit]
[-] WorkersStatisticsList.php
[edit]
[-] WorkersCumulativeStatisticsOptions.php
[edit]
[-] WorkersRealTimeStatisticsPage.php
[edit]
[-] WorkersStatisticsPage.php
[edit]
[-] WorkerStatisticsInstance.php
[edit]
[+]
..
[-] ReservationOptions.php
[edit]
[-] WorkerStatisticsContext.php
[edit]
[-] WorkerChannelContext.php
[edit]
[-] WorkersStatisticsContext.php
[edit]
[-] ReservationContext.php
[edit]
[-] ReservationList.php
[edit]
[-] WorkersCumulativeStatisticsInstance.php
[edit]
[-] WorkerChannelInstance.php
[edit]
[-] WorkerStatisticsPage.php
[edit]
[-] WorkersRealTimeStatisticsInstance.php
[edit]
[-] ReservationInstance.php
[edit]
[-] WorkerChannelList.php
[edit]
[-] WorkersRealTimeStatisticsList.php
[edit]
[-] WorkersStatisticsOptions.php
[edit]
[-] WorkersCumulativeStatisticsContext.php
[edit]
[-] WorkersCumulativeStatisticsList.php
[edit]
[-] WorkerChannelPage.php
[edit]
[-] WorkerStatisticsList.php
[edit]
[-] ReservationPage.php
[edit]
[-] WorkersRealTimeStatisticsOptions.php
[edit]
[-] WorkersRealTimeStatisticsContext.php
[edit]
[-] WorkersStatisticsInstance.php
[edit]
[-] WorkerChannelOptions.php
[edit]
[-] WorkerStatisticsOptions.php
[edit]