/home/desid573/public_html/angel/drivers/twilio-php-master/Twilio/Rest/Monitor/V1
Edit: /home/desid573/public_html/angel/drivers/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) . ']';
}
}