solution = [ 'segmentId' => $segmentId, ]; $this->uri = '/Insights/Segments/' . \rawurlencode($segmentId) .''; } /** * Fetch the InsightsSegmentsInstance * * @param array|Options $options Optional Arguments * @return InsightsSegmentsInstance Fetched InsightsSegmentsInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): InsightsSegmentsInstance { $options = new Values($options); $headers = Values::of(['Token' => $options['token']]); $payload = $this->version->fetch('GET', $this->uri, [], [], $headers); return new InsightsSegmentsInstance( $this->version, $payload, $this->solution['segmentId'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.FlexApi.V1.InsightsSegmentsContext ' . \implode(' ', $context) . ']'; } }