PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Preview
/
Sync
/
Service
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Preview\Sync\Service; use Twilio\Options; use Twilio\Values; /** * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com. */ abstract class SyncListOptions { /** * @param string $uniqueName The unique_name * @return CreateSyncListOptions Options builder */ public static function create(string $uniqueName = Values::NONE): CreateSyncListOptions { return new CreateSyncListOptions($uniqueName); } } class CreateSyncListOptions extends Options { /** * @param string $uniqueName The unique_name */ public function __construct(string $uniqueName = Values::NONE) { $this->options['uniqueName'] = $uniqueName; } /** * The unique_name * * @param string $uniqueName The unique_name * @return $this Fluent Builder */ public function setUniqueName(string $uniqueName): self { $this->options['uniqueName'] = $uniqueName; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.Preview.Sync.CreateSyncListOptions ' . $options . ']'; } }
[-] SyncListList.php
[edit]
[+]
Document
[-] SyncMapList.php
[edit]
[+]
..
[-] DocumentList.php
[edit]
[-] SyncMapInstance.php
[edit]
[-] DocumentContext.php
[edit]
[-] SyncMapPage.php
[edit]
[-] SyncListContext.php
[edit]
[+]
SyncList
[-] SyncMapOptions.php
[edit]
[-] SyncMapContext.php
[edit]
[-] SyncListPage.php
[edit]
[+]
SyncMap
[-] DocumentPage.php
[edit]
[-] SyncListOptions.php
[edit]
[-] SyncListInstance.php
[edit]
[-] DocumentInstance.php
[edit]
[-] DocumentOptions.php
[edit]