solution = array('serviceSid' => $serviceSid, 'mapSid' => $mapSid, 'key' => $key, ); $this->uri = '/Services/' . rawurlencode($serviceSid) . '/Maps/' . rawurlencode($mapSid) . '/Items/' . rawurlencode($key) . ''; } /** * Fetch a SyncMapItemInstance * * @return SyncMapItemInstance Fetched SyncMapItemInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new SyncMapItemInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['mapSid'], $this->solution['key'] ); } /** * Deletes the SyncMapItemInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * Update the SyncMapItemInstance * * @param array $data The data * @return SyncMapItemInstance Updated SyncMapItemInstance */ public function update($data) { $data = Values::of(array('Data' => Serialize::jsonObject($data), )); $payload = $this->version->update( 'POST', $this->uri, array(), $data ); return new SyncMapItemInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['mapSid'], $this->solution['key'] ); } /** * 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.SyncMapItemContext ' . implode(' ', $context) . ']'; } }