options['activityName'] = $activityName; $this->options['activitySid'] = $activitySid; $this->options['available'] = $available; $this->options['friendlyName'] = $friendlyName; $this->options['targetWorkersExpression'] = $targetWorkersExpression; $this->options['taskQueueName'] = $taskQueueName; $this->options['taskQueueSid'] = $taskQueueSid; } /** * Filter by workers that are in a particular Activity by Friendly Name * * @param string $activityName Filter by workers that are in a particular * Activity by Friendly Name * @return $this Fluent Builder */ public function setActivityName($activityName) { $this->options['activityName'] = $activityName; return $this; } /** * Filter by workers that are in a particular Activity by SID * * @param string $activitySid Filter by workers that are in a particular * Activity by SID * @return $this Fluent Builder */ public function setActivitySid($activitySid) { $this->options['activitySid'] = $activitySid; return $this; } /** * Filter by workers that are available or unavailable. (Note: This can be 'true', '1' or 'yes' to indicate a true value. All other values will represent false) * * @param string $available Filter by workers that are available or unavailable. * @return $this Fluent Builder */ public function setAvailable($available) { $this->options['available'] = $available; return $this; } /** * Filter by a worker's friendly name * * @param string $friendlyName Filter by a worker's friendly name * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; return $this; } /** * Filter by workers that would match an expression on a TaskQueue. This is helpful for debugging which workers would match a potential queue. * * @param string $targetWorkersExpression Filter by workers that would match an * expression on a TaskQueue. * @return $this Fluent Builder */ public function setTargetWorkersExpression($targetWorkersExpression) { $this->options['targetWorkersExpression'] = $targetWorkersExpression; return $this; } /** * Filter by workers that are eligible for a TaskQueue by Friendly Name * * @param string $taskQueueName Filter by workers that are eligible for a * TaskQueue by Friendly Name * @return $this Fluent Builder */ public function setTaskQueueName($taskQueueName) { $this->options['taskQueueName'] = $taskQueueName; return $this; } /** * Filter by workers that are eligible for a TaskQueue by SID * * @param string $taskQueueSid Filter by workers that are eligible for a * TaskQueue by SID * @return $this Fluent Builder */ public function setTaskQueueSid($taskQueueSid) { $this->options['taskQueueSid'] = $taskQueueSid; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Taskrouter.V1.ReadWorkerOptions ' . implode(' ', $options) . ']'; } } class CreateWorkerOptions extends Options { /** * @param string $activitySid A valid Activity describing the worker's initial * state. * @param string $attributes JSON object describing this worker. */ public function __construct($activitySid = Values::NONE, $attributes = Values::NONE) { $this->options['activitySid'] = $activitySid; $this->options['attributes'] = $attributes; } /** * A valid Activity describing the worker's initial state. See Activities for more information. If not provided, new Workers will be use the DefaultActivitySid configured on the Workspace. * * @param string $activitySid A valid Activity describing the worker's initial * state. * @return $this Fluent Builder */ public function setActivitySid($activitySid) { $this->options['activitySid'] = $activitySid; return $this; } /** * JSON object describing this worker. For example: `{ 'email: 'Bob@foo.com', 'phone': '8675309' }`. This data will be passed to the Assignment Callback URL whenever TaskRouter assigns a Task to this worker. Defaults to {}. * * @param string $attributes JSON object describing this worker. * @return $this Fluent Builder */ public function setAttributes($attributes) { $this->options['attributes'] = $attributes; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Taskrouter.V1.CreateWorkerOptions ' . implode(' ', $options) . ']'; } } class UpdateWorkerOptions extends Options { /** * @param string $activitySid The activity_sid * @param string $attributes The attributes * @param string $friendlyName The friendly_name */ public function __construct($activitySid = Values::NONE, $attributes = Values::NONE, $friendlyName = Values::NONE) { $this->options['activitySid'] = $activitySid; $this->options['attributes'] = $attributes; $this->options['friendlyName'] = $friendlyName; } /** * The activity_sid * * @param string $activitySid The activity_sid * @return $this Fluent Builder */ public function setActivitySid($activitySid) { $this->options['activitySid'] = $activitySid; return $this; } /** * The attributes * * @param string $attributes The attributes * @return $this Fluent Builder */ public function setAttributes($attributes) { $this->options['attributes'] = $attributes; return $this; } /** * The friendly_name * * @param string $friendlyName The friendly_name * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Taskrouter.V1.UpdateWorkerOptions ' . implode(' ', $options) . ']'; } }