!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/twilio/sdk/src/Twilio/Rest/Chat/V2/Service/Channel/   drwxr-xr-x
Free 12.93 GB of 57.97 GB (22.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     WebhookOptions.php (13.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This code was generated by
 * \ / _    _  _|   _  _
 * | (_)\/(_)(_|\/| |(/_  v1.0.0
 * /       /
 */

namespace Twilio\Rest\Chat\V2\Service\Channel;

use 
Twilio\Options;
use 
Twilio\Values;

abstract class 
WebhookOptions {
    
/**
     * @param string $configurationUrl The URL of the webhook to call
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     * @return CreateWebhookOptions Options builder
     */
    
public static function create(string $configurationUrl Values::NONEstring $configurationMethod Values::NONE, array $configurationFilters Values::ARRAY_NONE, array $configurationTriggers Values::ARRAY_NONEstring $configurationFlowSid Values::NONEint $configurationRetryCount Values::NONE): CreateWebhookOptions {
        return new 
CreateWebhookOptions($configurationUrl$configurationMethod$configurationFilters$configurationTriggers$configurationFlowSid$configurationRetryCount);
    }

    
/**
     * @param string $configurationUrl The URL of the webhook to call
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     * @return UpdateWebhookOptions Options builder
     */
    
public static function update(string $configurationUrl Values::NONEstring $configurationMethod Values::NONE, array $configurationFilters Values::ARRAY_NONE, array $configurationTriggers Values::ARRAY_NONEstring $configurationFlowSid Values::NONEint $configurationRetryCount Values::NONE): UpdateWebhookOptions {
        return new 
UpdateWebhookOptions($configurationUrl$configurationMethod$configurationFilters$configurationTriggers$configurationFlowSid$configurationRetryCount);
    }
}

class 
CreateWebhookOptions extends Options {
    
/**
     * @param string $configurationUrl The URL of the webhook to call
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     */
    
public function __construct(string $configurationUrl Values::NONEstring $configurationMethod Values::NONE, array $configurationFilters Values::ARRAY_NONE, array $configurationTriggers Values::ARRAY_NONEstring $configurationFlowSid Values::NONEint $configurationRetryCount Values::NONE) {
        
$this->options['configurationUrl'] = $configurationUrl;
        
$this->options['configurationMethod'] = $configurationMethod;
        
$this->options['configurationFilters'] = $configurationFilters;
        
$this->options['configurationTriggers'] = $configurationTriggers;
        
$this->options['configurationFlowSid'] = $configurationFlowSid;
        
$this->options['configurationRetryCount'] = $configurationRetryCount;
    }

    
/**
     * The URL of the webhook to call using the `configuration.method`.
     *
     * @param string $configurationUrl The URL of the webhook to call
     * @return $this Fluent Builder
     */
    
public function setConfigurationUrl(string $configurationUrl): self {
        
$this->options['configurationUrl'] = $configurationUrl;
        return 
$this;
    }

    
/**
     * The HTTP method used to call `configuration.url`. Can be: `GET` or `POST` and the default is `POST`.
     *
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @return $this Fluent Builder
     */
    
public function setConfigurationMethod(string $configurationMethod): self {
        
$this->options['configurationMethod'] = $configurationMethod;
        return 
$this;
    }

    
/**
     * The events that cause us to call the Channel Webhook. Used when `type` is `webhook`. This parameter takes only one event. To specify more than one event, repeat this parameter for each event. For the list of possible events, see [Webhook Event Triggers](https://www.twilio.com/docs/chat/webhook-events#webhook-event-trigger).
     *
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @return $this Fluent Builder
     */
    
public function setConfigurationFilters(array $configurationFilters): self {
        
$this->options['configurationFilters'] = $configurationFilters;
        return 
$this;
    }

    
/**
     * A string that will cause us to call the webhook when it is present in a message body. This parameter takes only one trigger string. To specify more than one, repeat this parameter for each trigger string up to a total of 5 trigger strings. Used only when `type` = `trigger`.
     *
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @return $this Fluent Builder
     */
    
public function setConfigurationTriggers(array $configurationTriggers): self {
        
$this->options['configurationTriggers'] = $configurationTriggers;
        return 
$this;
    }

    
/**
     * The SID of the Studio [Flow](https://www.twilio.com/docs/studio/rest-api/flow) to call when an event in `configuration.filters` occurs. Used only when `type` is `studio`.
     *
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @return $this Fluent Builder
     */
    
public function setConfigurationFlowSid(string $configurationFlowSid): self {
        
$this->options['configurationFlowSid'] = $configurationFlowSid;
        return 
$this;
    }

    
/**
     * The number of times to retry the webhook if the first attempt fails. Can be an integer between 0 and 3, inclusive, and the default is 0.
     *
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     * @return $this Fluent Builder
     */
    
public function setConfigurationRetryCount(int $configurationRetryCount): self {
        
$this->options['configurationRetryCount'] = $configurationRetryCount;
        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.Chat.V2.CreateWebhookOptions ' $options ']';
    }
}

class 
UpdateWebhookOptions extends Options {
    
/**
     * @param string $configurationUrl The URL of the webhook to call
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     */
    
public function __construct(string $configurationUrl Values::NONEstring $configurationMethod Values::NONE, array $configurationFilters Values::ARRAY_NONE, array $configurationTriggers Values::ARRAY_NONEstring $configurationFlowSid Values::NONEint $configurationRetryCount Values::NONE) {
        
$this->options['configurationUrl'] = $configurationUrl;
        
$this->options['configurationMethod'] = $configurationMethod;
        
$this->options['configurationFilters'] = $configurationFilters;
        
$this->options['configurationTriggers'] = $configurationTriggers;
        
$this->options['configurationFlowSid'] = $configurationFlowSid;
        
$this->options['configurationRetryCount'] = $configurationRetryCount;
    }

    
/**
     * The URL of the webhook to call using the `configuration.method`.
     *
     * @param string $configurationUrl The URL of the webhook to call
     * @return $this Fluent Builder
     */
    
public function setConfigurationUrl(string $configurationUrl): self {
        
$this->options['configurationUrl'] = $configurationUrl;
        return 
$this;
    }

    
/**
     * The HTTP method used to call `configuration.url`. Can be: `GET` or `POST` and the default is `POST`.
     *
     * @param string $configurationMethod The HTTP method used to call
     *                                    `configuration.url`
     * @return $this Fluent Builder
     */
    
public function setConfigurationMethod(string $configurationMethod): self {
        
$this->options['configurationMethod'] = $configurationMethod;
        return 
$this;
    }

    
/**
     * The events that cause us to call the Channel Webhook. Used when `type` is `webhook`. This parameter takes only one event. To specify more than one event, repeat this parameter for each event. For the list of possible events, see [Webhook Event Triggers](https://www.twilio.com/docs/chat/webhook-events#webhook-event-trigger).
     *
     * @param string[] $configurationFilters The events that cause us to call the
     *                                       Channel Webhook
     * @return $this Fluent Builder
     */
    
public function setConfigurationFilters(array $configurationFilters): self {
        
$this->options['configurationFilters'] = $configurationFilters;
        return 
$this;
    }

    
/**
     * A string that will cause us to call the webhook when it is present in a message body. This parameter takes only one trigger string. To specify more than one, repeat this parameter for each trigger string up to a total of 5 trigger strings. Used only when `type` = `trigger`.
     *
     * @param string[] $configurationTriggers A string that will cause us to call
     *                                        the webhook when it is found in a
     *                                        message body
     * @return $this Fluent Builder
     */
    
public function setConfigurationTriggers(array $configurationTriggers): self {
        
$this->options['configurationTriggers'] = $configurationTriggers;
        return 
$this;
    }

    
/**
     * The SID of the Studio [Flow](https://www.twilio.com/docs/studio/rest-api/flow) to call when an event in `configuration.filters` occurs. Used only when `type` = `studio`.
     *
     * @param string $configurationFlowSid The SID of the Studio Flow to call when
     *                                     an event occurs
     * @return $this Fluent Builder
     */
    
public function setConfigurationFlowSid(string $configurationFlowSid): self {
        
$this->options['configurationFlowSid'] = $configurationFlowSid;
        return 
$this;
    }

    
/**
     * The number of times to retry the webhook if the first attempt fails. Can be an integer between 0 and 3, inclusive, and the default is 0.
     *
     * @param int $configurationRetryCount The number of times to retry the webhook
     *                                     if the first attempt fails
     * @return $this Fluent Builder
     */
    
public function setConfigurationRetryCount(int $configurationRetryCount): self {
        
$this->options['configurationRetryCount'] = $configurationRetryCount;
        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.Chat.V2.UpdateWebhookOptions ' $options ']';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0062 ]--