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


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

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

namespace Twilio\Rest\Taskrouter\V1\Workspace;

use 
Twilio\Options;
use 
Twilio\Values;

abstract class 
EventOptions {
    
/**
     * @param \DateTime $endDate Only include usage that occurred on or before this
     *                           date
     * @param string $eventType The type of Events to read
     * @param int $minutes The period of events to read in minutes
     * @param string $reservationSid The SID of the Reservation with the Events to
     *                               read
     * @param \DateTime $startDate Only include Events from on or after this date
     * @param string $taskQueueSid The SID of the TaskQueue with the Events to read
     * @param string $taskSid The SID of the Task with the Events to read
     * @param string $workerSid The SID of the Worker with the Events to read
     * @param string $workflowSid The SID of the Worker with the Events to read
     * @param string $taskChannel The TaskChannel with the Events to read
     * @param string $sid The unique string that identifies the resource
     * @return ReadEventOptions Options builder
     */
    
public static function read(\DateTime $endDate Values::NONEstring $eventType Values::NONEint $minutes Values::NONEstring $reservationSid Values::NONE\DateTime $startDate Values::NONEstring $taskQueueSid Values::NONEstring $taskSid Values::NONEstring $workerSid Values::NONEstring $workflowSid Values::NONEstring $taskChannel Values::NONEstring $sid Values::NONE): ReadEventOptions {
        return new 
ReadEventOptions($endDate$eventType$minutes$reservationSid$startDate$taskQueueSid$taskSid$workerSid$workflowSid$taskChannel$sid);
    }
}

class 
ReadEventOptions extends Options {
    
/**
     * @param \DateTime $endDate Only include usage that occurred on or before this
     *                           date
     * @param string $eventType The type of Events to read
     * @param int $minutes The period of events to read in minutes
     * @param string $reservationSid The SID of the Reservation with the Events to
     *                               read
     * @param \DateTime $startDate Only include Events from on or after this date
     * @param string $taskQueueSid The SID of the TaskQueue with the Events to read
     * @param string $taskSid The SID of the Task with the Events to read
     * @param string $workerSid The SID of the Worker with the Events to read
     * @param string $workflowSid The SID of the Worker with the Events to read
     * @param string $taskChannel The TaskChannel with the Events to read
     * @param string $sid The unique string that identifies the resource
     */
    
public function __construct(\DateTime $endDate Values::NONEstring $eventType Values::NONEint $minutes Values::NONEstring $reservationSid Values::NONE\DateTime $startDate Values::NONEstring $taskQueueSid Values::NONEstring $taskSid Values::NONEstring $workerSid Values::NONEstring $workflowSid Values::NONEstring $taskChannel Values::NONEstring $sid Values::NONE) {
        
$this->options['endDate'] = $endDate;
        
$this->options['eventType'] = $eventType;
        
$this->options['minutes'] = $minutes;
        
$this->options['reservationSid'] = $reservationSid;
        
$this->options['startDate'] = $startDate;
        
$this->options['taskQueueSid'] = $taskQueueSid;
        
$this->options['taskSid'] = $taskSid;
        
$this->options['workerSid'] = $workerSid;
        
$this->options['workflowSid'] = $workflowSid;
        
$this->options['taskChannel'] = $taskChannel;
        
$this->options['sid'] = $sid;
    }

    
/**
     * Only include Events that occurred on or before this date, specified in GMT as an [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time.
     *
     * @param \DateTime $endDate Only include usage that occurred on or before this
     *                           date
     * @return $this Fluent Builder
     */
    
public function setEndDate(\DateTime $endDate): self {
        
$this->options['endDate'] = $endDate;
        return 
$this;
    }

    
/**
     * The type of Events to read. Returns only Events of the type specified.
     *
     * @param string $eventType The type of Events to read
     * @return $this Fluent Builder
     */
    
public function setEventType(string $eventType): self {
        
$this->options['eventType'] = $eventType;
        return 
$this;
    }

    
/**
     * The period of events to read in minutes. Returns only Events that occurred since this many minutes in the past. The default is `15` minutes. Task Attributes for Events occuring more 43,200 minutes ago will be redacted.
     *
     * @param int $minutes The period of events to read in minutes
     * @return $this Fluent Builder
     */
    
public function setMinutes(int $minutes): self {
        
$this->options['minutes'] = $minutes;
        return 
$this;
    }

    
/**
     * The SID of the Reservation with the Events to read. Returns only Events that pertain to the specified Reservation.
     *
     * @param string $reservationSid The SID of the Reservation with the Events to
     *                               read
     * @return $this Fluent Builder
     */
    
public function setReservationSid(string $reservationSid): self {
        
$this->options['reservationSid'] = $reservationSid;
        return 
$this;
    }

    
/**
     * Only include Events from on or after this date and time, specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. Task Attributes for Events older than 30 days will be redacted.
     *
     * @param \DateTime $startDate Only include Events from on or after this date
     * @return $this Fluent Builder
     */
    
public function setStartDate(\DateTime $startDate): self {
        
$this->options['startDate'] = $startDate;
        return 
$this;
    }

    
/**
     * The SID of the TaskQueue with the Events to read. Returns only the Events that pertain to the specified TaskQueue.
     *
     * @param string $taskQueueSid The SID of the TaskQueue with the Events to read
     * @return $this Fluent Builder
     */
    
public function setTaskQueueSid(string $taskQueueSid): self {
        
$this->options['taskQueueSid'] = $taskQueueSid;
        return 
$this;
    }

    
/**
     * The SID of the Task with the Events to read. Returns only the Events that pertain to the specified Task.
     *
     * @param string $taskSid The SID of the Task with the Events to read
     * @return $this Fluent Builder
     */
    
public function setTaskSid(string $taskSid): self {
        
$this->options['taskSid'] = $taskSid;
        return 
$this;
    }

    
/**
     * The SID of the Worker with the Events to read. Returns only the Events that pertain to the specified Worker.
     *
     * @param string $workerSid The SID of the Worker with the Events to read
     * @return $this Fluent Builder
     */
    
public function setWorkerSid(string $workerSid): self {
        
$this->options['workerSid'] = $workerSid;
        return 
$this;
    }

    
/**
     * The SID of the Workflow with the Events to read. Returns only the Events that pertain to the specified Workflow.
     *
     * @param string $workflowSid The SID of the Worker with the Events to read
     * @return $this Fluent Builder
     */
    
public function setWorkflowSid(string $workflowSid): self {
        
$this->options['workflowSid'] = $workflowSid;
        return 
$this;
    }

    
/**
     * The TaskChannel with the Events to read. Returns only the Events that pertain to the specified TaskChannel.
     *
     * @param string $taskChannel The TaskChannel with the Events to read
     * @return $this Fluent Builder
     */
    
public function setTaskChannel(string $taskChannel): self {
        
$this->options['taskChannel'] = $taskChannel;
        return 
$this;
    }

    
/**
     * The SID of the Event resource to read.
     *
     * @param string $sid The unique string that identifies the resource
     * @return $this Fluent Builder
     */
    
public function setSid(string $sid): self {
        
$this->options['sid'] = $sid;
        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.Taskrouter.V1.ReadEventOptions ' $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 ]--