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


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

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

namespace Twilio\Rest\IpMessaging\V2\Service;

use 
Twilio\Options;
use 
Twilio\Values;

abstract class 
ChannelOptions {
    
/**
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return DeleteChannelOptions Options builder
     */
    
public static function delete(string $xTwilioWebhookEnabled Values::NONE): DeleteChannelOptions {
        return new 
DeleteChannelOptions($xTwilioWebhookEnabled);
    }

    
/**
     * @param string $friendlyName The friendly_name
     * @param string $uniqueName The unique_name
     * @param string $attributes The attributes
     * @param string $type The type
     * @param \DateTime $dateCreated The date_created
     * @param \DateTime $dateUpdated The date_updated
     * @param string $createdBy The created_by
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return CreateChannelOptions Options builder
     */
    
public static function create(string $friendlyName Values::NONEstring $uniqueName Values::NONEstring $attributes Values::NONEstring $type Values::NONE\DateTime $dateCreated Values::NONE\DateTime $dateUpdated Values::NONEstring $createdBy Values::NONEstring $xTwilioWebhookEnabled Values::NONE): CreateChannelOptions {
        return new 
CreateChannelOptions($friendlyName$uniqueName$attributes$type$dateCreated$dateUpdated$createdBy$xTwilioWebhookEnabled);
    }

    
/**
     * @param string[] $type The type
     * @return ReadChannelOptions Options builder
     */
    
public static function read(array $type Values::ARRAY_NONE): ReadChannelOptions {
        return new 
ReadChannelOptions($type);
    }

    
/**
     * @param string $friendlyName The friendly_name
     * @param string $uniqueName The unique_name
     * @param string $attributes The attributes
     * @param \DateTime $dateCreated The date_created
     * @param \DateTime $dateUpdated The date_updated
     * @param string $createdBy The created_by
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return UpdateChannelOptions Options builder
     */
    
public static function update(string $friendlyName Values::NONEstring $uniqueName Values::NONEstring $attributes Values::NONE\DateTime $dateCreated Values::NONE\DateTime $dateUpdated Values::NONEstring $createdBy Values::NONEstring $xTwilioWebhookEnabled Values::NONE): UpdateChannelOptions {
        return new 
UpdateChannelOptions($friendlyName$uniqueName$attributes$dateCreated$dateUpdated$createdBy$xTwilioWebhookEnabled);
    }
}

class 
DeleteChannelOptions extends Options {
    
/**
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.IpMessaging.V2.DeleteChannelOptions ' $options ']';
    }
}

class 
CreateChannelOptions extends Options {
    
/**
     * @param string $friendlyName The friendly_name
     * @param string $uniqueName The unique_name
     * @param string $attributes The attributes
     * @param string $type The type
     * @param \DateTime $dateCreated The date_created
     * @param \DateTime $dateUpdated The date_updated
     * @param string $createdBy The created_by
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $friendlyName Values::NONEstring $uniqueName Values::NONEstring $attributes Values::NONEstring $type Values::NONE\DateTime $dateCreated Values::NONE\DateTime $dateUpdated Values::NONEstring $createdBy Values::NONEstring $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['attributes'] = $attributes;
        
$this->options['type'] = $type;
        
$this->options['dateCreated'] = $dateCreated;
        
$this->options['dateUpdated'] = $dateUpdated;
        
$this->options['createdBy'] = $createdBy;
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The friendly_name
     *
     * @param string $friendlyName The friendly_name
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * The unique_name
     *
     * @param string $uniqueName The unique_name
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * The attributes
     *
     * @param string $attributes The attributes
     * @return $this Fluent Builder
     */
    
public function setAttributes(string $attributes): self {
        
$this->options['attributes'] = $attributes;
        return 
$this;
    }

    
/**
     * The type
     *
     * @param string $type The type
     * @return $this Fluent Builder
     */
    
public function setType(string $type): self {
        
$this->options['type'] = $type;
        return 
$this;
    }

    
/**
     * The date_created
     *
     * @param \DateTime $dateCreated The date_created
     * @return $this Fluent Builder
     */
    
public function setDateCreated(\DateTime $dateCreated): self {
        
$this->options['dateCreated'] = $dateCreated;
        return 
$this;
    }

    
/**
     * The date_updated
     *
     * @param \DateTime $dateUpdated The date_updated
     * @return $this Fluent Builder
     */
    
public function setDateUpdated(\DateTime $dateUpdated): self {
        
$this->options['dateUpdated'] = $dateUpdated;
        return 
$this;
    }

    
/**
     * The created_by
     *
     * @param string $createdBy The created_by
     * @return $this Fluent Builder
     */
    
public function setCreatedBy(string $createdBy): self {
        
$this->options['createdBy'] = $createdBy;
        return 
$this;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.IpMessaging.V2.CreateChannelOptions ' $options ']';
    }
}

class 
ReadChannelOptions extends Options {
    
/**
     * @param string[] $type The type
     */
    
public function __construct(array $type Values::ARRAY_NONE) {
        
$this->options['type'] = $type;
    }

    
/**
     * The type
     *
     * @param string[] $type The type
     * @return $this Fluent Builder
     */
    
public function setType(array $type): self {
        
$this->options['type'] = $type;
        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.IpMessaging.V2.ReadChannelOptions ' $options ']';
    }
}

class 
UpdateChannelOptions extends Options {
    
/**
     * @param string $friendlyName The friendly_name
     * @param string $uniqueName The unique_name
     * @param string $attributes The attributes
     * @param \DateTime $dateCreated The date_created
     * @param \DateTime $dateUpdated The date_updated
     * @param string $createdBy The created_by
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     */
    
public function __construct(string $friendlyName Values::NONEstring $uniqueName Values::NONEstring $attributes Values::NONE\DateTime $dateCreated Values::NONE\DateTime $dateUpdated Values::NONEstring $createdBy Values::NONEstring $xTwilioWebhookEnabled Values::NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['uniqueName'] = $uniqueName;
        
$this->options['attributes'] = $attributes;
        
$this->options['dateCreated'] = $dateCreated;
        
$this->options['dateUpdated'] = $dateUpdated;
        
$this->options['createdBy'] = $createdBy;
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
    }

    
/**
     * The friendly_name
     *
     * @param string $friendlyName The friendly_name
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * The unique_name
     *
     * @param string $uniqueName The unique_name
     * @return $this Fluent Builder
     */
    
public function setUniqueName(string $uniqueName): self {
        
$this->options['uniqueName'] = $uniqueName;
        return 
$this;
    }

    
/**
     * The attributes
     *
     * @param string $attributes The attributes
     * @return $this Fluent Builder
     */
    
public function setAttributes(string $attributes): self {
        
$this->options['attributes'] = $attributes;
        return 
$this;
    }

    
/**
     * The date_created
     *
     * @param \DateTime $dateCreated The date_created
     * @return $this Fluent Builder
     */
    
public function setDateCreated(\DateTime $dateCreated): self {
        
$this->options['dateCreated'] = $dateCreated;
        return 
$this;
    }

    
/**
     * The date_updated
     *
     * @param \DateTime $dateUpdated The date_updated
     * @return $this Fluent Builder
     */
    
public function setDateUpdated(\DateTime $dateUpdated): self {
        
$this->options['dateUpdated'] = $dateUpdated;
        return 
$this;
    }

    
/**
     * The created_by
     *
     * @param string $createdBy The created_by
     * @return $this Fluent Builder
     */
    
public function setCreatedBy(string $createdBy): self {
        
$this->options['createdBy'] = $createdBy;
        return 
$this;
    }

    
/**
     * The X-Twilio-Webhook-Enabled HTTP request header
     *
     * @param string $xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP
     *                                      request header
     * @return $this Fluent Builder
     */
    
public function setXTwilioWebhookEnabled(string $xTwilioWebhookEnabled): self {
        
$this->options['xTwilioWebhookEnabled'] = $xTwilioWebhookEnabled;
        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.IpMessaging.V2.UpdateChannelOptions ' $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.0065 ]--