options['category'] = $category; $this->options['startDate'] = $startDate; $this->options['endDate'] = $endDate; } /** * The category * * @param string $category The category * @return $this Fluent Builder */ public function setCategory($category) { $this->options['category'] = $category; 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.Api.V2010.ReadDailyOptions ' . implode(' ', $options) . ']'; } }