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\Options; use Twilio\Values; abstract class WorkerChannelOptions { /** * @param int $capacity The total number of Tasks that the Worker should handle * for the TaskChannel type * @param bool $available Whether the WorkerChannel is available * @return UpdateWorkerChannelOptions Options builder */ public static function update(int $capacity = Values::NONE, bool $available = Values::NONE): UpdateWorkerChannelOptions { return new UpdateWorkerChannelOptions($capacity, $available); } } class UpdateWorkerChannelOptions extends Options { /** * @param int $capacity The total number of Tasks that the Worker should handle * for the TaskChannel type * @param bool $available Whether the WorkerChannel is available */ public function __construct(int $capacity = Values::NONE, bool $available = Values::NONE) { $this->options['capacity'] = $capacity; $this->options['available'] = $available; } /** * The total number of Tasks that the Worker should handle for the TaskChannel type. TaskRouter creates reservations for Tasks of this TaskChannel type up to the specified capacity. If the capacity is 0, no new reservations will be created. * * @param int $capacity The total number of Tasks that the Worker should handle * for the TaskChannel type * @return $this Fluent Builder */ public function setCapacity(int $capacity): self { $this->options['capacity'] = $capacity; return $this; } /** * Whether the WorkerChannel is available. Set to `false` to prevent the Worker from receiving any new Tasks of this TaskChannel type. * * @param bool $available Whether the WorkerChannel is available * @return $this Fluent Builder */ public function setAvailable(bool $available): self { $this->options['available'] = $available; 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.UpdateWorkerChannelOptions ' . $options . ']'; } }
[-] 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]