PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Autopilot
/
V1
/
Assistant
/
Task
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Autopilot\V1\Assistant\Task; use Twilio\Options; use Twilio\Values; /** * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com. */ abstract class TaskActionsOptions { /** * @param array $actions The JSON string that specifies the actions that * instruct the Assistant on how to perform the task * @return UpdateTaskActionsOptions Options builder */ public static function update(array $actions = Values::ARRAY_NONE): UpdateTaskActionsOptions { return new UpdateTaskActionsOptions($actions); } } class UpdateTaskActionsOptions extends Options { /** * @param array $actions The JSON string that specifies the actions that * instruct the Assistant on how to perform the task */ public function __construct(array $actions = Values::ARRAY_NONE) { $this->options['actions'] = $actions; } /** * The JSON string that specifies the [actions](https://www.twilio.com/docs/autopilot/actions) that instruct the Assistant on how to perform the task. * * @param array $actions The JSON string that specifies the actions that * instruct the Assistant on how to perform the task * @return $this Fluent Builder */ public function setActions(array $actions): self { $this->options['actions'] = $actions; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.Autopilot.V1.UpdateTaskActionsOptions ' . $options . ']'; } }
[-] SampleOptions.php
[edit]
[-] TaskActionsOptions.php
[edit]
[-] TaskActionsContext.php
[edit]
[-] SamplePage.php
[edit]
[-] SampleList.php
[edit]
[-] TaskStatisticsList.php
[edit]
[-] TaskActionsList.php
[edit]
[+]
..
[-] FieldInstance.php
[edit]
[-] TaskStatisticsPage.php
[edit]
[-] FieldContext.php
[edit]
[-] TaskStatisticsInstance.php
[edit]
[-] TaskStatisticsContext.php
[edit]
[-] FieldList.php
[edit]
[-] SampleInstance.php
[edit]
[-] SampleContext.php
[edit]
[-] FieldPage.php
[edit]
[-] TaskActionsInstance.php
[edit]
[-] TaskActionsPage.php
[edit]