芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/Jwt/Grants/TaskRouterGrant.php
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; } }