solution = array( 'serviceSid' => $serviceSid, 'listSid' => $listSid, 'identity' => $identity, ); $this->uri = '/Services/' . rawurlencode($serviceSid) . '/Lists/' . rawurlencode($listSid) . '/Permissions/' . rawurlencode($identity) . ''; } /** * Fetch a SyncListPermissionInstance * * @return SyncListPermissionInstance Fetched SyncListPermissionInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new SyncListPermissionInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['listSid'], $this->solution['identity'] ); } /** * Deletes the SyncListPermissionInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * Update the SyncListPermissionInstance * * @param boolean $read Read access. * @param boolean $write Write access. * @param boolean $manage Manage access. * @return SyncListPermissionInstance Updated SyncListPermissionInstance */ public function update($read, $write, $manage) { $data = Values::of(array( 'Read' => Serialize::booleanToString($read), 'Write' => Serialize::booleanToString($write), 'Manage' => Serialize::booleanToString($manage), )); $payload = $this->version->update( 'POST', $this->uri, array(), $data ); return new SyncListPermissionInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['listSid'], $this->solution['identity'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Preview.Sync.SyncListPermissionContext ' . implode(' ', $context) . ']'; } }