solution = array('serviceSid' => $serviceSid, 'mapSid' => $mapSid, 'identity' => $identity, ); $this->uri = '/Services/' . rawurlencode($serviceSid) . '/Maps/' . rawurlencode($mapSid) . '/Permissions/' . rawurlencode($identity) . ''; } /** * Fetch a SyncMapPermissionInstance * * @return SyncMapPermissionInstance Fetched SyncMapPermissionInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new SyncMapPermissionInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['mapSid'], $this->solution['identity'] ); } /** * Deletes the SyncMapPermissionInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * Update the SyncMapPermissionInstance * * @param boolean $read Read access. * @param boolean $write Write access. * @param boolean $manage Manage access. * @return SyncMapPermissionInstance Updated SyncMapPermissionInstance */ 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 SyncMapPermissionInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['mapSid'], $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.Sync.V1.SyncMapPermissionContext ' . implode(' ', $context) . ']'; } }