PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Taskrouter
/
V1
/
Workspace
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Taskrouter\V1\Workspace; use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Values; use Twilio\Version; class EventContext extends InstanceContext { /** * Initialize the EventContext * * @param Version $version Version that contains the resource * @param string $workspaceSid The SID of the Workspace with the Event to fetch * @param string $sid The SID of the resource to fetch */ public function __construct(Version $version, $workspaceSid, $sid) { parent::__construct($version); // Path Solution $this->solution = ['workspaceSid' => $workspaceSid, 'sid' => $sid, ]; $this->uri = '/Workspaces/' . \rawurlencode($workspaceSid) . '/Events/' . \rawurlencode($sid) . ''; } /** * Fetch the EventInstance * * @return EventInstance Fetched EventInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): EventInstance { $payload = $this->version->fetch('GET', $this->uri); return new EventInstance( $this->version, $payload, $this->solution['workspaceSid'], $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.EventContext ' . \implode(' ', $context) . ']'; } }
[-] TaskContext.php
[edit]
[-] WorkerList.php
[edit]
[-] WorkflowList.php
[edit]
[-] TaskQueueOptions.php
[edit]
[-] ActivityPage.php
[edit]
[-] EventContext.php
[edit]
[-] WorkspaceCumulativeStatisticsList.php
[edit]
[-] WorkspaceStatisticsPage.php
[edit]
[-] WorkflowPage.php
[edit]
[-] ActivityOptions.php
[edit]
[-] TaskChannelContext.php
[edit]
[-] EventPage.php
[edit]
[+]
..
[-] WorkspaceStatisticsOptions.php
[edit]
[-] WorkspaceCumulativeStatisticsOptions.php
[edit]
[-] WorkflowInstance.php
[edit]
[-] TaskQueuePage.php
[edit]
[+]
Workflow
[-] TaskInstance.php
[edit]
[-] ActivityInstance.php
[edit]
[+]
TaskQueue
[-] WorkspaceStatisticsList.php
[edit]
[-] TaskChannelInstance.php
[edit]
[-] TaskOptions.php
[edit]
[-] TaskChannelOptions.php
[edit]
[-] ActivityList.php
[edit]
[-] EventOptions.php
[edit]
[-] ActivityContext.php
[edit]
[-] WorkspaceStatisticsInstance.php
[edit]
[+]
Task
[-] WorkflowContext.php
[edit]
[-] WorkflowOptions.php
[edit]
[-] TaskChannelList.php
[edit]
[-] WorkspaceCumulativeStatisticsPage.php
[edit]
[+]
Worker
[-] TaskList.php
[edit]
[-] WorkspaceStatisticsContext.php
[edit]
[-] WorkspaceRealTimeStatisticsContext.php
[edit]
[-] TaskPage.php
[edit]
[-] TaskChannelPage.php
[edit]
[-] WorkerInstance.php
[edit]
[-] TaskQueueInstance.php
[edit]
[-] WorkerContext.php
[edit]
[-] WorkspaceRealTimeStatisticsPage.php
[edit]
[-] WorkspaceRealTimeStatisticsOptions.php
[edit]
[-] TaskQueueContext.php
[edit]
[-] WorkspaceCumulativeStatisticsContext.php
[edit]
[-] EventInstance.php
[edit]
[-] WorkerPage.php
[edit]
[-] WorkspaceRealTimeStatisticsInstance.php
[edit]
[-] TaskQueueList.php
[edit]
[-] WorkspaceRealTimeStatisticsList.php
[edit]
[-] EventList.php
[edit]
[-] WorkerOptions.php
[edit]
[-] WorkspaceCumulativeStatisticsInstance.php
[edit]