PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Taskrouter
/
V1
/
Workspace
/
Workflow
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Taskrouter\V1\Workspace\Workflow; use Twilio\Options; use Twilio\Values; abstract class WorkflowRealTimeStatisticsOptions { /** * @param string $taskChannel Only calculate real-time statistics on this * TaskChannel * @return FetchWorkflowRealTimeStatisticsOptions Options builder */ public static function fetch(string $taskChannel = Values::NONE): FetchWorkflowRealTimeStatisticsOptions { return new FetchWorkflowRealTimeStatisticsOptions($taskChannel); } } class FetchWorkflowRealTimeStatisticsOptions extends Options { /** * @param string $taskChannel Only calculate real-time statistics on this * TaskChannel */ public function __construct(string $taskChannel = Values::NONE) { $this->options['taskChannel'] = $taskChannel; } /** * Only calculate real-time statistics on this TaskChannel. Can be the TaskChannel's SID or its `unique_name`, such as `voice`, `sms`, or `default`. * * @param string $taskChannel Only calculate real-time statistics on this * TaskChannel * @return $this Fluent Builder */ public function setTaskChannel(string $taskChannel): self { $this->options['taskChannel'] = $taskChannel; 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.Taskrouter.V1.FetchWorkflowRealTimeStatisticsOptions ' . $options . ']'; } }
[-] WorkflowRealTimeStatisticsList.php
[edit]
[-] WorkflowCumulativeStatisticsInstance.php
[edit]
[-] WorkflowCumulativeStatisticsOptions.php
[edit]
[+]
..
[-] WorkflowStatisticsPage.php
[edit]
[-] WorkflowStatisticsInstance.php
[edit]
[-] WorkflowRealTimeStatisticsOptions.php
[edit]
[-] WorkflowStatisticsContext.php
[edit]
[-] WorkflowCumulativeStatisticsList.php
[edit]
[-] WorkflowRealTimeStatisticsPage.php
[edit]
[-] WorkflowCumulativeStatisticsPage.php
[edit]
[-] WorkflowStatisticsList.php
[edit]
[-] WorkflowStatisticsOptions.php
[edit]
[-] WorkflowRealTimeStatisticsContext.php
[edit]
[-] WorkflowCumulativeStatisticsContext.php
[edit]
[-] WorkflowRealTimeStatisticsInstance.php
[edit]