options['log'] = $log; $this->options['messageDateBefore'] = $messageDateBefore; $this->options['messageDate'] = $messageDate; $this->options['messageDateAfter'] = $messageDateAfter; } /** * Only show notifications for this log level * * @param integer $log Filter by log level * @return $this Fluent Builder */ public function setLog($log) { $this->options['log'] = $log; return $this; } /** * Only show notifications for this date. Should be formatted as YYYY-MM-DD. You can also specify inequalities. * * @param string $messageDateBefore Filter by date * @return $this Fluent Builder */ public function setMessageDateBefore($messageDateBefore) { $this->options['messageDateBefore'] = $messageDateBefore; return $this; } /** * Only show notifications for this date. Should be formatted as YYYY-MM-DD. You can also specify inequalities. * * @param string $messageDate Filter by date * @return $this Fluent Builder */ public function setMessageDate($messageDate) { $this->options['messageDate'] = $messageDate; return $this; } /** * Only show notifications for this date. Should be formatted as YYYY-MM-DD. You can also specify inequalities. * * @param string $messageDateAfter Filter by date * @return $this Fluent Builder */ public function setMessageDateAfter($messageDateAfter) { $this->options['messageDateAfter'] = $messageDateAfter; 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.Api.V2010.ReadNotificationOptions ' . implode(' ', $options) . ']'; } }