![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/twilio/sdk/src/Twilio/Rest/Messaging/V1/ |
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Messaging\V1; 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 [email protected]. */ abstract class WebhookOptions { /** * @param string $webhookMethod The HTTP method to use when sending a webhook * request * @param string $webhookFilters The list of webhook event triggers that are * enabled for the Service * @param string $preWebhookUrl The absolute URL of the pre-event webhook * @param string $postWebhookUrl The absolute URL of the post-event webhook * @param int $preWebhookRetryCount The number of times to try the pre-event * webhook request if the first attempt fails * @param int $postWebhookRetryCount The number of times to try the post-event * webhook request if the first attempt fails * @param string $target The routing target of the webhook * @return UpdateWebhookOptions Options builder */ public static function update($webhookMethod = Values::NONE, $webhookFilters = Values::NONE, $preWebhookUrl = Values::NONE, $postWebhookUrl = Values::NONE, $preWebhookRetryCount = Values::NONE, $postWebhookRetryCount = Values::NONE, $target = Values::NONE) { return new UpdateWebhookOptions($webhookMethod, $webhookFilters, $preWebhookUrl, $postWebhookUrl, $preWebhookRetryCount, $postWebhookRetryCount, $target); } } class UpdateWebhookOptions extends Options { /** * @param string $webhookMethod The HTTP method to use when sending a webhook * request * @param string $webhookFilters The list of webhook event triggers that are * enabled for the Service * @param string $preWebhookUrl The absolute URL of the pre-event webhook * @param string $postWebhookUrl The absolute URL of the post-event webhook * @param int $preWebhookRetryCount The number of times to try the pre-event * webhook request if the first attempt fails * @param int $postWebhookRetryCount The number of times to try the post-event * webhook request if the first attempt fails * @param string $target The routing target of the webhook */ public function __construct($webhookMethod = Values::NONE, $webhookFilters = Values::NONE, $preWebhookUrl = Values::NONE, $postWebhookUrl = Values::NONE, $preWebhookRetryCount = Values::NONE, $postWebhookRetryCount = Values::NONE, $target = Values::NONE) { $this->options['webhookMethod'] = $webhookMethod; $this->options['webhookFilters'] = $webhookFilters; $this->options['preWebhookUrl'] = $preWebhookUrl; $this->options['postWebhookUrl'] = $postWebhookUrl; $this->options['preWebhookRetryCount'] = $preWebhookRetryCount; $this->options['postWebhookRetryCount'] = $postWebhookRetryCount; $this->options['target'] = $target; } /** * The HTTP method to use when sending a webhook request. * * @param string $webhookMethod The HTTP method to use when sending a webhook * request * @return $this Fluent Builder */ public function setWebhookMethod($webhookMethod) { $this->options['webhookMethod'] = $webhookMethod; return $this; } /** * The list of webhook event triggers that are enabled for the Service. * * @param string $webhookFilters The list of webhook event triggers that are * enabled for the Service * @return $this Fluent Builder */ public function setWebhookFilters($webhookFilters) { $this->options['webhookFilters'] = $webhookFilters; return $this; } /** * The absolute URL of the pre-event webhook. * * @param string $preWebhookUrl The absolute URL of the pre-event webhook * @return $this Fluent Builder */ public function setPreWebhookUrl($preWebhookUrl) { $this->options['preWebhookUrl'] = $preWebhookUrl; return $this; } /** * The absolute URL of the post-event webhook. * * @param string $postWebhookUrl The absolute URL of the post-event webhook * @return $this Fluent Builder */ public function setPostWebhookUrl($postWebhookUrl) { $this->options['postWebhookUrl'] = $postWebhookUrl; return $this; } /** * The number of times to try the pre-event webhook request if the first attempt fails. Can be up to 3 and the default is 0. * * @param int $preWebhookRetryCount The number of times to try the pre-event * webhook request if the first attempt fails * @return $this Fluent Builder */ public function setPreWebhookRetryCount($preWebhookRetryCount) { $this->options['preWebhookRetryCount'] = $preWebhookRetryCount; return $this; } /** * The number of times to try the post-event webhook request if the first attempt fails. Can be up to 3 and the default is 0. * * @param int $postWebhookRetryCount The number of times to try the post-event * webhook request if the first attempt fails * @return $this Fluent Builder */ public function setPostWebhookRetryCount($postWebhookRetryCount) { $this->options['postWebhookRetryCount'] = $postWebhookRetryCount; return $this; } /** * The routing target of the webhook. Can be ordinary or routed internally to Flex * * @param string $target The routing target of the webhook * @return $this Fluent Builder */ public function setTarget($target) { $this->options['target'] = $target; 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.Messaging.V1.UpdateWebhookOptions ' . \implode(' ', $options) . ']'; } }