![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/twilio/sdk/src/Twilio/Jwt/Grants/ |
<?php namespace Twilio\Jwt\Grants; class TaskRouterGrant implements Grant { private $workspaceSid; private $workerSid; private $role; /** * Returns the workspace sid * * @return string the workspace sid */ public function getWorkspaceSid() { return $this->workspaceSid; } /** * Set the workspace sid of this grant * * @param string $workspaceSid workspace sid of the grant * * @return Services_Twilio_Auth_TaskRouterGrant updated grant */ public function setWorkspaceSid($workspaceSid) { $this->workspaceSid = $workspaceSid; return $this; } /** * Returns the worker sid * * @return string the worker sid */ public function getWorkerSid() { return $this->workerSid; } /** * Set the worker sid of this grant * * @param string $worker worker sid of the grant * * @return Services_Twilio_Auth_TaskRouterGrant updated grant */ public function setWorkerSid($workerSid) { $this->workerSid = $workerSid; return $this; } /** * Returns the role * * @return string the role */ public function getRole() { return $this->role; } /** * Set the role of this grant * * @param string $role role of the grant * * @return Services_Twilio_Auth_TaskRouterGrant updated grant */ public function setRole($role) { $this->role = $role; return $this; } /** * Returns the grant type * * @return string type of the grant */ public function getGrantKey() { return "task_router"; } /** * Returns the grant data * * @return array data of the grant */ public function getPayload() { $payload = array(); if ($this->workspaceSid) { $payload['workspace_sid'] = $this->workspaceSid; } if ($this->workerSid) { $payload['worker_sid'] = $this->workerSid; } if ($this->role) { $payload['role'] = $this->role; } return $payload; } }