solution = array('sid' => $sid, ); $this->uri = '/Recordings/' . rawurlencode($sid) . ''; } /** * Fetch a RecordingInstance * * @return RecordingInstance Fetched RecordingInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new RecordingInstance($this->version, $payload, $this->solution['sid']); } /** * Deletes the RecordingInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * 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.Video.V1.RecordingContext ' . implode(' ', $context) . ']'; } }