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


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

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

namespace Twilio\Rest\Api\V2010\Account;

use 
Twilio\Options;
use 
Twilio\Values;

abstract class 
AddressOptions {
    
/**
     * @param string $friendlyName A string to describe the new resource
     * @param bool $emergencyEnabled Whether to enable emergency calling on the new
     *                               address
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     * @return CreateAddressOptions Options builder
     */
    
public static function create(string $friendlyName Values::NONEbool $emergencyEnabled Values::NONEbool $autoCorrectAddress Values::NONEstring $streetSecondary Values::NONE): CreateAddressOptions {
        return new 
CreateAddressOptions($friendlyName$emergencyEnabled$autoCorrectAddress$streetSecondary);
    }

    
/**
     * @param string $friendlyName A string to describe the resource
     * @param string $customerName The name to associate with the address
     * @param string $street The number and street address of the address
     * @param string $city The city of the address
     * @param string $region The state or region of the address
     * @param string $postalCode The postal code of the address
     * @param bool $emergencyEnabled Whether to enable emergency calling on the
     *                               address
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     * @return UpdateAddressOptions Options builder
     */
    
public static function update(string $friendlyName Values::NONEstring $customerName Values::NONEstring $street Values::NONEstring $city Values::NONEstring $region Values::NONEstring $postalCode Values::NONEbool $emergencyEnabled Values::NONEbool $autoCorrectAddress Values::NONEstring $streetSecondary Values::NONE): UpdateAddressOptions {
        return new 
UpdateAddressOptions($friendlyName$customerName$street$city$region$postalCode$emergencyEnabled$autoCorrectAddress$streetSecondary);
    }

    
/**
     * @param string $customerName The `customer_name` of the Address resources to
     *                             read
     * @param string $friendlyName The string that identifies the Address resources
     *                             to read
     * @param string $isoCountry The ISO country code of the Address resources to
     *                           read
     * @return ReadAddressOptions Options builder
     */
    
public static function read(string $customerName Values::NONEstring $friendlyName Values::NONEstring $isoCountry Values::NONE): ReadAddressOptions {
        return new 
ReadAddressOptions($customerName$friendlyName$isoCountry);
    }
}

class 
CreateAddressOptions extends Options {
    
/**
     * @param string $friendlyName A string to describe the new resource
     * @param bool $emergencyEnabled Whether to enable emergency calling on the new
     *                               address
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     */
    
public function __construct(string $friendlyName Values::NONEbool $emergencyEnabled Values::NONEbool $autoCorrectAddress Values::NONEstring $streetSecondary Values::NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['emergencyEnabled'] = $emergencyEnabled;
        
$this->options['autoCorrectAddress'] = $autoCorrectAddress;
        
$this->options['streetSecondary'] = $streetSecondary;
    }

    
/**
     * A descriptive string that you create to describe the new address. It can be up to 64 characters long.
     *
     * @param string $friendlyName A string to describe the new resource
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * Whether to enable emergency calling on the new address. Can be: `true` or `false`.
     *
     * @param bool $emergencyEnabled Whether to enable emergency calling on the new
     *                               address
     * @return $this Fluent Builder
     */
    
public function setEmergencyEnabled(bool $emergencyEnabled): self {
        
$this->options['emergencyEnabled'] = $emergencyEnabled;
        return 
$this;
    }

    
/**
     * Whether we should automatically correct the address. Can be: `true` or `false` and the default is `true`. If empty or `true`, we will correct the address you provide if necessary. If `false`, we won't alter the address you provide.
     *
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @return $this Fluent Builder
     */
    
public function setAutoCorrectAddress(bool $autoCorrectAddress): self {
        
$this->options['autoCorrectAddress'] = $autoCorrectAddress;
        return 
$this;
    }

    
/**
     * The additional number and street address of the address.
     *
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     * @return $this Fluent Builder
     */
    
public function setStreetSecondary(string $streetSecondary): self {
        
$this->options['streetSecondary'] = $streetSecondary;
        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.Api.V2010.CreateAddressOptions ' $options ']';
    }
}

class 
UpdateAddressOptions extends Options {
    
/**
     * @param string $friendlyName A string to describe the resource
     * @param string $customerName The name to associate with the address
     * @param string $street The number and street address of the address
     * @param string $city The city of the address
     * @param string $region The state or region of the address
     * @param string $postalCode The postal code of the address
     * @param bool $emergencyEnabled Whether to enable emergency calling on the
     *                               address
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     */
    
public function __construct(string $friendlyName Values::NONEstring $customerName Values::NONEstring $street Values::NONEstring $city Values::NONEstring $region Values::NONEstring $postalCode Values::NONEbool $emergencyEnabled Values::NONEbool $autoCorrectAddress Values::NONEstring $streetSecondary Values::NONE) {
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['customerName'] = $customerName;
        
$this->options['street'] = $street;
        
$this->options['city'] = $city;
        
$this->options['region'] = $region;
        
$this->options['postalCode'] = $postalCode;
        
$this->options['emergencyEnabled'] = $emergencyEnabled;
        
$this->options['autoCorrectAddress'] = $autoCorrectAddress;
        
$this->options['streetSecondary'] = $streetSecondary;
    }

    
/**
     * A descriptive string that you create to describe the address. It can be up to 64 characters long.
     *
     * @param string $friendlyName A string to describe the resource
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * The name to associate with the address.
     *
     * @param string $customerName The name to associate with the address
     * @return $this Fluent Builder
     */
    
public function setCustomerName(string $customerName): self {
        
$this->options['customerName'] = $customerName;
        return 
$this;
    }

    
/**
     * The number and street address of the address.
     *
     * @param string $street The number and street address of the address
     * @return $this Fluent Builder
     */
    
public function setStreet(string $street): self {
        
$this->options['street'] = $street;
        return 
$this;
    }

    
/**
     * The city of the address.
     *
     * @param string $city The city of the address
     * @return $this Fluent Builder
     */
    
public function setCity(string $city): self {
        
$this->options['city'] = $city;
        return 
$this;
    }

    
/**
     * The state or region of the address.
     *
     * @param string $region The state or region of the address
     * @return $this Fluent Builder
     */
    
public function setRegion(string $region): self {
        
$this->options['region'] = $region;
        return 
$this;
    }

    
/**
     * The postal code of the address.
     *
     * @param string $postalCode The postal code of the address
     * @return $this Fluent Builder
     */
    
public function setPostalCode(string $postalCode): self {
        
$this->options['postalCode'] = $postalCode;
        return 
$this;
    }

    
/**
     * Whether to enable emergency calling on the address. Can be: `true` or `false`.
     *
     * @param bool $emergencyEnabled Whether to enable emergency calling on the
     *                               address
     * @return $this Fluent Builder
     */
    
public function setEmergencyEnabled(bool $emergencyEnabled): self {
        
$this->options['emergencyEnabled'] = $emergencyEnabled;
        return 
$this;
    }

    
/**
     * Whether we should automatically correct the address. Can be: `true` or `false` and the default is `true`. If empty or `true`, we will correct the address you provide if necessary. If `false`, we won't alter the address you provide.
     *
     * @param bool $autoCorrectAddress Whether we should automatically correct the
     *                                 address
     * @return $this Fluent Builder
     */
    
public function setAutoCorrectAddress(bool $autoCorrectAddress): self {
        
$this->options['autoCorrectAddress'] = $autoCorrectAddress;
        return 
$this;
    }

    
/**
     * The additional number and street address of the address.
     *
     * @param string $streetSecondary The additional number and street address of
     *                                the address
     * @return $this Fluent Builder
     */
    
public function setStreetSecondary(string $streetSecondary): self {
        
$this->options['streetSecondary'] = $streetSecondary;
        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.Api.V2010.UpdateAddressOptions ' $options ']';
    }
}

class 
ReadAddressOptions extends Options {
    
/**
     * @param string $customerName The `customer_name` of the Address resources to
     *                             read
     * @param string $friendlyName The string that identifies the Address resources
     *                             to read
     * @param string $isoCountry The ISO country code of the Address resources to
     *                           read
     */
    
public function __construct(string $customerName Values::NONEstring $friendlyName Values::NONEstring $isoCountry Values::NONE) {
        
$this->options['customerName'] = $customerName;
        
$this->options['friendlyName'] = $friendlyName;
        
$this->options['isoCountry'] = $isoCountry;
    }

    
/**
     * The `customer_name` of the Address resources to read.
     *
     * @param string $customerName The `customer_name` of the Address resources to
     *                             read
     * @return $this Fluent Builder
     */
    
public function setCustomerName(string $customerName): self {
        
$this->options['customerName'] = $customerName;
        return 
$this;
    }

    
/**
     * The string that identifies the Address resources to read.
     *
     * @param string $friendlyName The string that identifies the Address resources
     *                             to read
     * @return $this Fluent Builder
     */
    
public function setFriendlyName(string $friendlyName): self {
        
$this->options['friendlyName'] = $friendlyName;
        return 
$this;
    }

    
/**
     * The ISO country code of the Address resources to read.
     *
     * @param string $isoCountry The ISO country code of the Address resources to
     *                           read
     * @return $this Fluent Builder
     */
    
public function setIsoCountry(string $isoCountry): self {
        
$this->options['isoCountry'] = $isoCountry;
        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.Api.V2010.ReadAddressOptions ' $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.0064 ]--