Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
TaskRouter
Location:
/home/zoteqbgb/public_html/vendor/twilio/sdk/src/Twilio/TaskRouter
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: WorkflowRuleTarget.php
<?php namespace Twilio\TaskRouter; /** * Twilio TaskRouter Workflow Rule Target * * @author Justin Witz <jwitz@twilio.com> * @license http://creativecommons.org/licenses/MIT/ MIT */ class WorkflowRuleTarget implements \JsonSerializable { public $queue; public $expression; public $priority; public $timeout; public function __construct(string $queue, int $priority = null, int $timeout = null, string $expression = null) { $this->queue = $queue; $this->priority = $priority; $this->timeout = $timeout; $this->expression = $expression; } public function jsonSerialize(): array { $json = []; $json['queue'] = $this->queue; if ($this->priority !== null) { $json['priority'] = $this->priority; } if ($this->timeout !== null) { $json['timeout'] = $this->timeout; } if ($this->expression !== null) { $json['expression'] = $this->expression; } return $json; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
WorkflowConfiguration.php
1,570 bytes
0644
2024-04-01 15:34
âï¸
ðï¸
Rename
WorkflowRule.php
837 bytes
0644
2024-04-01 15:34
âï¸
ðï¸
Rename
WorkflowRuleTarget.php
1,037 bytes
0644
2024-04-01 15:34
âï¸
ðï¸
Rename
Chang
Apply