File manager - Edit - /var/www/payraty/hris/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1/InteractionOptions.php
Back
<?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; use Twilio\Options; use Twilio\Values; abstract class InteractionOptions { /** * @param array $routing The Interaction's routing logic. * @param string $interactionContextSid The Interaction context sid is used for adding a context lookup sid * @param string $webhookTtid The unique identifier for Interaction level webhook * @return CreateInteractionOptions Options builder */ public static function create( array $routing = Values::ARRAY_NONE, string $interactionContextSid = Values::NONE, string $webhookTtid = Values::NONE ): CreateInteractionOptions { return new CreateInteractionOptions( $routing, $interactionContextSid, $webhookTtid ); } /** * @param string $webhookTtid The unique identifier for Interaction level webhook * @return UpdateInteractionOptions Options builder */ public static function update( string $webhookTtid = Values::NONE ): UpdateInteractionOptions { return new UpdateInteractionOptions( $webhookTtid ); } } class CreateInteractionOptions extends Options { /** * @param array $routing The Interaction's routing logic. * @param string $interactionContextSid The Interaction context sid is used for adding a context lookup sid * @param string $webhookTtid The unique identifier for Interaction level webhook */ public function __construct( array $routing = Values::ARRAY_NONE, string $interactionContextSid = Values::NONE, string $webhookTtid = Values::NONE ) { $this->options['routing'] = $routing; $this->options['interactionContextSid'] = $interactionContextSid; $this->options['webhookTtid'] = $webhookTtid; } /** * The Interaction's routing logic. * * @param array $routing The Interaction's routing logic. * @return $this Fluent Builder */ public function setRouting(array $routing): self { $this->options['routing'] = $routing; return $this; } /** * The Interaction context sid is used for adding a context lookup sid * * @param string $interactionContextSid The Interaction context sid is used for adding a context lookup sid * @return $this Fluent Builder */ public function setInteractionContextSid(string $interactionContextSid): self { $this->options['interactionContextSid'] = $interactionContextSid; return $this; } /** * The unique identifier for Interaction level webhook * * @param string $webhookTtid The unique identifier for Interaction level webhook * @return $this Fluent Builder */ public function setWebhookTtid(string $webhookTtid): self { $this->options['webhookTtid'] = $webhookTtid; 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.CreateInteractionOptions ' . $options . ']'; } } class UpdateInteractionOptions extends Options { /** * @param string $webhookTtid The unique identifier for Interaction level webhook */ public function __construct( string $webhookTtid = Values::NONE ) { $this->options['webhookTtid'] = $webhookTtid; } /** * The unique identifier for Interaction level webhook * * @param string $webhookTtid The unique identifier for Interaction level webhook * @return $this Fluent Builder */ public function setWebhookTtid(string $webhookTtid): self { $this->options['webhookTtid'] = $webhookTtid; 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.UpdateInteractionOptions ' . $options . ']'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings