File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/twilio/sdk/Twilio/Rest/Monitor/V1/AlertOptions.php
Back
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Monitor\V1; use Twilio\Options; use Twilio\Values; abstract class AlertOptions { /** * @param string $logLevel The log_level * @param \DateTime $startDate The start_date * @param \DateTime $endDate The end_date * @return ReadAlertOptions Options builder */ public static function read($logLevel = Values::NONE, $startDate = Values::NONE, $endDate = Values::NONE) { return new ReadAlertOptions($logLevel, $startDate, $endDate); } } class ReadAlertOptions extends Options { /** * @param string $logLevel The log_level * @param \DateTime $startDate The start_date * @param \DateTime $endDate The end_date */ public function __construct($logLevel = Values::NONE, $startDate = Values::NONE, $endDate = Values::NONE) { $this->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) . ']'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings