!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/Verify/V2/Service/   drwxr-xr-x
Free 12.95 GB of 57.97 GB (22.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

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

namespace Twilio\Rest\Verify\V2\Service;

use 
Twilio\Options;
use 
Twilio\Values;

abstract class 
VerificationOptions {
    
/**
     * @param string $customFriendlyName A custom user defined friendly name
     * @param string $customMessage The text of a custom message to use for the
     *                              verification
     * @param string $sendDigits The digits to send after a phone call is answered
     * @param string $locale The override locale to use for the verification SMS,
     *                       WhatsApp or call
     * @param string $customCode A pre-generated code
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @param string $payee The payee of the associated PSD2 compliant transaction
     * @param array $rateLimits The custom key-value pairs of Programmable Rate
     *                          Limits.
     * @param array $channelConfiguration Channel specific configuration in json
     *                                    format.
     * @param string $appHash Your App Hash to be appended at the end of an SMS.
     * @param string $templateSid The verification template SMS or Voice message.
     * @param string $templateCustomSubstitutions The values of the special
     *                                            variables declared on the message
     *                                            template.
     * @param string $deviceIp The IP address of the client's device.
     * @return CreateVerificationOptions Options builder
     */
    
public static function create(string $customFriendlyName Values::NONEstring $customMessage Values::NONEstring $sendDigits Values::NONEstring $locale Values::NONEstring $customCode Values::NONEstring $amount Values::NONEstring $payee Values::NONE, array $rateLimits Values::ARRAY_NONE, array $channelConfiguration Values::ARRAY_NONEstring $appHash Values::NONEstring $templateSid Values::NONEstring $templateCustomSubstitutions Values::NONEstring $deviceIp Values::NONE): CreateVerificationOptions {
        return new 
CreateVerificationOptions($customFriendlyName$customMessage$sendDigits$locale$customCode$amount$payee$rateLimits$channelConfiguration$appHash$templateSid$templateCustomSubstitutions$deviceIp);
    }
}

class 
CreateVerificationOptions extends Options {
    
/**
     * @param string $customFriendlyName A custom user defined friendly name
     * @param string $customMessage The text of a custom message to use for the
     *                              verification
     * @param string $sendDigits The digits to send after a phone call is answered
     * @param string $locale The override locale to use for the verification SMS,
     *                       WhatsApp or call
     * @param string $customCode A pre-generated code
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @param string $payee The payee of the associated PSD2 compliant transaction
     * @param array $rateLimits The custom key-value pairs of Programmable Rate
     *                          Limits.
     * @param array $channelConfiguration Channel specific configuration in json
     *                                    format.
     * @param string $appHash Your App Hash to be appended at the end of an SMS.
     * @param string $templateSid The verification template SMS or Voice message.
     * @param string $templateCustomSubstitutions The values of the special
     *                                            variables declared on the message
     *                                            template.
     * @param string $deviceIp The IP address of the client's device.
     */
    
public function __construct(string $customFriendlyName Values::NONEstring $customMessage Values::NONEstring $sendDigits Values::NONEstring $locale Values::NONEstring $customCode Values::NONEstring $amount Values::NONEstring $payee Values::NONE, array $rateLimits Values::ARRAY_NONE, array $channelConfiguration Values::ARRAY_NONEstring $appHash Values::NONEstring $templateSid Values::NONEstring $templateCustomSubstitutions Values::NONEstring $deviceIp Values::NONE) {
        
$this->options['customFriendlyName'] = $customFriendlyName;
        
$this->options['customMessage'] = $customMessage;
        
$this->options['sendDigits'] = $sendDigits;
        
$this->options['locale'] = $locale;
        
$this->options['customCode'] = $customCode;
        
$this->options['amount'] = $amount;
        
$this->options['payee'] = $payee;
        
$this->options['rateLimits'] = $rateLimits;
        
$this->options['channelConfiguration'] = $channelConfiguration;
        
$this->options['appHash'] = $appHash;
        
$this->options['templateSid'] = $templateSid;
        
$this->options['templateCustomSubstitutions'] = $templateCustomSubstitutions;
        
$this->options['deviceIp'] = $deviceIp;
    }

    
/**
     * A custom user defined friendly name that overwrites the existing one in the verification message
     *
     * @param string $customFriendlyName A custom user defined friendly name
     * @return $this Fluent Builder
     */
    
public function setCustomFriendlyName(string $customFriendlyName): self {
        
$this->options['customFriendlyName'] = $customFriendlyName;
        return 
$this;
    }

    
/**
     * The text of a custom message to use for the verification.
     *
     * @param string $customMessage The text of a custom message to use for the
     *                              verification
     * @return $this Fluent Builder
     */
    
public function setCustomMessage(string $customMessage): self {
        
$this->options['customMessage'] = $customMessage;
        return 
$this;
    }

    
/**
     * The digits to send after a phone call is answered, for example, to dial an extension. For more information, see the Programmable Voice documentation of [sendDigits](https://www.twilio.com/docs/voice/twiml/number#attributes-sendDigits).
     *
     * @param string $sendDigits The digits to send after a phone call is answered
     * @return $this Fluent Builder
     */
    
public function setSendDigits(string $sendDigits): self {
        
$this->options['sendDigits'] = $sendDigits;
        return 
$this;
    }

    
/**
     * Locale will automatically resolve based on phone number country code for SMS, WhatsApp, and call channel verifications. It will fallback to English or the template’s default translation if the selected translation is not available. This parameter will override the automatic locale resolution. [See supported languages and more information here](https://www.twilio.com/docs/verify/supported-languages).
     *
     * @param string $locale The override locale to use for the verification SMS,
     *                       WhatsApp or call
     * @return $this Fluent Builder
     */
    
public function setLocale(string $locale): self {
        
$this->options['locale'] = $locale;
        return 
$this;
    }

    
/**
     * A pre-generated code to use for verification. The code can be between 4 and 10 characters, inclusive.
     *
     * @param string $customCode A pre-generated code
     * @return $this Fluent Builder
     */
    
public function setCustomCode(string $customCode): self {
        
$this->options['customCode'] = $customCode;
        return 
$this;
    }

    
/**
     * The amount of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.
     *
     * @param string $amount The amount of the associated PSD2 compliant
     *                       transaction.
     * @return $this Fluent Builder
     */
    
public function setAmount(string $amount): self {
        
$this->options['amount'] = $amount;
        return 
$this;
    }

    
/**
     * The payee of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.
     *
     * @param string $payee The payee of the associated PSD2 compliant transaction
     * @return $this Fluent Builder
     */
    
public function setPayee(string $payee): self {
        
$this->options['payee'] = $payee;
        return 
$this;
    }

    
/**
     * The custom key-value pairs of Programmable Rate Limits. Keys correspond to `unique_name` fields defined when [creating your Rate Limit](https://www.twilio.com/docs/verify/api/service-rate-limits). Associated value pairs represent values in the request that you are rate limiting on. You may include multiple Rate Limit values in each request.
     *
     * @param array $rateLimits The custom key-value pairs of Programmable Rate
     *                          Limits.
     * @return $this Fluent Builder
     */
    
public function setRateLimits(array $rateLimits): self {
        
$this->options['rateLimits'] = $rateLimits;
        return 
$this;
    }

    
/**
     * [`email`](https://www.twilio.com/docs/verify/email) channel configuration in json format. The fields 'from' and 'from_name' are optional but if included the 'from' field must have a valid email address.
     *
     * @param array $channelConfiguration Channel specific configuration in json
     *                                    format.
     * @return $this Fluent Builder
     */
    
public function setChannelConfiguration(array $channelConfiguration): self {
        
$this->options['channelConfiguration'] = $channelConfiguration;
        return 
$this;
    }

    
/**
     * Your [App Hash](https://developers.google.com/identity/sms-retriever/verify#computing_your_apps_hash_string) to be appended at the end of your verification SMS body. Applies only to SMS. Example SMS body: `<#> Your AppName verification code is: 1234 He42w354ol9`.
     *
     * @param string $appHash Your App Hash to be appended at the end of an SMS.
     * @return $this Fluent Builder
     */
    
public function setAppHash(string $appHash): self {
        
$this->options['appHash'] = $appHash;
        return 
$this;
    }

    
/**
     * The message [template](https://www.twilio.com/docs/verify/api/templates). If provided, will override the default template for the Service. SMS and Voice channels only.
     *
     * @param string $templateSid The verification template SMS or Voice message.
     * @return $this Fluent Builder
     */
    
public function setTemplateSid(string $templateSid): self {
        
$this->options['templateSid'] = $templateSid;
        return 
$this;
    }

    
/**
     * A stringified JSON object in which the keys are the template's special variables and the values are the variables substitutions.
     *
     * @param string $templateCustomSubstitutions The values of the special
     *                                            variables declared on the message
     *                                            template.
     * @return $this Fluent Builder
     */
    
public function setTemplateCustomSubstitutions(string $templateCustomSubstitutions): self {
        
$this->options['templateCustomSubstitutions'] = $templateCustomSubstitutions;
        return 
$this;
    }

    
/**
     * The IP address of the client's device. If provided, it has to be a valid IPv4 or IPv6 address.
     *
     * @param string $deviceIp The IP address of the client's device.
     * @return $this Fluent Builder
     */
    
public function setDeviceIp(string $deviceIp): self {
        
$this->options['deviceIp'] = $deviceIp;
        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.Verify.V2.CreateVerificationOptions ' $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.0073 ]--