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