options['uniqueName'] = $uniqueName; $this->options['ttl'] = $ttl; } /** * The unique and addressable name of this Stream. Optional, up to 256 characters long. * * @param string $uniqueName Stream unique name. * @return $this Fluent Builder */ public function setUniqueName($uniqueName) { $this->options['uniqueName'] = $uniqueName; return $this; } /** * Optional time-to-live of this Stream in seconds. In the range [1, 31 536 000 (1 year)], or 0 for infinity. * * @param integer $ttl Stream TTL. * @return $this Fluent Builder */ public function setTtl($ttl) { $this->options['ttl'] = $ttl; 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.Sync.V1.CreateSyncStreamOptions ' . implode(' ', $options) . ']'; } } class UpdateSyncStreamOptions extends Options { /** * @param integer $ttl Stream TTL. */ public function __construct($ttl = Values::NONE) { $this->options['ttl'] = $ttl; } /** * Time-to-live of this Stream in seconds. In the range [1, 31 536 000 (1 year)], or 0 for infinity. * * @param integer $ttl Stream TTL. * @return $this Fluent Builder */ public function setTtl($ttl) { $this->options['ttl'] = $ttl; 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.Sync.V1.UpdateSyncStreamOptions ' . implode(' ', $options) . ']'; } }