options['identifier'] = $identifier; } /** * The identifier * * @param string $identifier The identifier * @return $this Fluent Builder */ public function setIdentifier($identifier) { $this->options['identifier'] = $identifier; 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.Proxy.V1.ReadParticipantOptions ' . implode(' ', $options) . ']'; } } class CreateParticipantOptions extends Options { /** * @param string $friendlyName A human readable description of this resource. * @param string $proxyIdentifier The proxy phone number for this Participant. * @param string $proxyIdentifierSid Proxy Identifier Sid. */ public function __construct($friendlyName = Values::NONE, $proxyIdentifier = Values::NONE, $proxyIdentifierSid = Values::NONE) { $this->options['friendlyName'] = $friendlyName; $this->options['proxyIdentifier'] = $proxyIdentifier; $this->options['proxyIdentifierSid'] = $proxyIdentifierSid; } /** * A human readable description of this resource, up to 64 characters. * * @param string $friendlyName A human readable description of this resource. * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; return $this; } /** * The proxy phone number for this Participant. * * @param string $proxyIdentifier The proxy phone number for this Participant. * @return $this Fluent Builder */ public function setProxyIdentifier($proxyIdentifier) { $this->options['proxyIdentifier'] = $proxyIdentifier; return $this; } /** * The unique SID identifier of the Proxy Identifier. * * @param string $proxyIdentifierSid Proxy Identifier Sid. * @return $this Fluent Builder */ public function setProxyIdentifierSid($proxyIdentifierSid) { $this->options['proxyIdentifierSid'] = $proxyIdentifierSid; 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.Proxy.V1.CreateParticipantOptions ' . implode(' ', $options) . ']'; } } class UpdateParticipantOptions extends Options { /** * @param string $identifier The phone number of this Participant. * @param string $friendlyName A human readable description of this resource. * @param string $proxyIdentifier The proxy phone number for this Participant. * @param string $proxyIdentifierSid Proxy Identifier Sid. */ public function __construct($identifier = Values::NONE, $friendlyName = Values::NONE, $proxyIdentifier = Values::NONE, $proxyIdentifierSid = Values::NONE) { $this->options['identifier'] = $identifier; $this->options['friendlyName'] = $friendlyName; $this->options['proxyIdentifier'] = $proxyIdentifier; $this->options['proxyIdentifierSid'] = $proxyIdentifierSid; } /** * The phone number of this Participant. * * @param string $identifier The phone number of this Participant. * @return $this Fluent Builder */ public function setIdentifier($identifier) { $this->options['identifier'] = $identifier; return $this; } /** * A human readable description of this resource, up to 64 characters. * * @param string $friendlyName A human readable description of this resource. * @return $this Fluent Builder */ public function setFriendlyName($friendlyName) { $this->options['friendlyName'] = $friendlyName; return $this; } /** * The proxy phone number for this Participant. * * @param string $proxyIdentifier The proxy phone number for this Participant. * @return $this Fluent Builder */ public function setProxyIdentifier($proxyIdentifier) { $this->options['proxyIdentifier'] = $proxyIdentifier; return $this; } /** * The unique SID identifier of the Proxy Identifier. * * @param string $proxyIdentifierSid Proxy Identifier Sid. * @return $this Fluent Builder */ public function setProxyIdentifierSid($proxyIdentifierSid) { $this->options['proxyIdentifierSid'] = $proxyIdentifierSid; 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.Proxy.V1.UpdateParticipantOptions ' . implode(' ', $options) . ']'; } }