solution = [ ]; $this->uri = '/Insights/QM/Settings/CommentTags'; } /** * Fetch the InsightsSettingsCommentInstance * * @param array|Options $options Optional Arguments * @return InsightsSettingsCommentInstance Fetched InsightsSettingsCommentInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): InsightsSettingsCommentInstance { $options = new Values($options); $headers = Values::of(['Token' => $options['token']]); $payload = $this->version->fetch('GET', $this->uri, [], [], $headers); return new InsightsSettingsCommentInstance( $this->version, $payload ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.FlexApi.V1.InsightsSettingsCommentList]'; } }