modern-events-calendar-lite/app/api/Twilio/Rest/FlexApi/V1/Interaction/InteractionChannelOptions.php

80 lines
2.2 KiB
PHP
Executable file

<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Flex
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\FlexApi\V1\Interaction;
use Twilio\Options;
use Twilio\Values;
abstract class InteractionChannelOptions
{
/**
* @param array $routing Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`.
* @return UpdateInteractionChannelOptions Options builder
*/
public static function update(
array $routing = Values::ARRAY_NONE
): UpdateInteractionChannelOptions
{
return new UpdateInteractionChannelOptions(
$routing
);
}
}
class UpdateInteractionChannelOptions extends Options
{
/**
* @param array $routing Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`.
*/
public function __construct(
array $routing = Values::ARRAY_NONE
) {
$this->options['routing'] = $routing;
}
/**
* Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`.
*
* @param array $routing Optional. The state of associated tasks. If not specified, all tasks will be set to `wrapping`.
* @return $this Fluent Builder
*/
public function setRouting(array $routing): self
{
$this->options['routing'] = $routing;
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.FlexApi.V1.UpdateInteractionChannelOptions ' . $options . ']';
}
}