options['outcome'] = $outcome; } /** * The outcome * * @param string $outcome The outcome * @return $this Fluent Builder */ public function setOutcome($outcome) { $this->options['outcome'] = $outcome; 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.CreateFeedbackOptions ' . implode(' ', $options) . ']'; } }