options['customMessage'] = $customMessage; } /** * A character string containing a custom message for this verification * * @param string $customMessage A custom message for this verification * @return $this Fluent Builder */ public function setCustomMessage($customMessage) { $this->options['customMessage'] = $customMessage; 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.Preview.AccSecurity.CreateVerificationOptions ' . implode(' ', $options) . ']'; } }