/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Monitor/V1
NameSizeModeActions
AlertContext.php17020644editdlrm
AlertInstance.php45340644editdlrm
AlertList.php51670644editdlrm
AlertOptions.php22670644editdlrm
AlertPage.php7150644editdlrm
EventContext.php14820644editdlrm
EventInstance.php39030644editdlrm
EventList.php53330644editdlrm
EventOptions.php37940644editdlrm
EventPage.php7150644editdlrm
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Monitor/V1/AlertOptions.php (2267B)
options['logLevel'] = $logLevel; $this->options['startDate'] = $startDate; $this->options['endDate'] = $endDate; } /** * The log_level * * @param string $logLevel The log_level * @return $this Fluent Builder */ public function setLogLevel($logLevel) { $this->options['logLevel'] = $logLevel; return $this; } /** * The start_date * * @param \DateTime $startDate The start_date * @return $this Fluent Builder */ public function setStartDate($startDate) { $this->options['startDate'] = $startDate; return $this; } /** * The end_date * * @param \DateTime $endDate The end_date * @return $this Fluent Builder */ public function setEndDate($endDate) { $this->options['endDate'] = $endDate; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Monitor.V1.ReadAlertOptions ' . implode(' ', $options) . ']'; } }