wecuro_blog/vendor/twilio/sdk/Twilio/Jwt/Grants/TaskRouterGrant.php

111 lines
2.2 KiB
PHP
Executable File

<?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;
}
}