JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrsolution = [ 'sid' => $sid, ]; $this->uri = '/PluginService/Releases/' . \rawurlencode($sid) .''; } /** * Fetch the PluginReleaseInstance * * @param array|Options $options Optional Arguments * @return PluginReleaseInstance Fetched PluginReleaseInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): PluginReleaseInstance { $options = new Values($options); $headers = Values::of(['Flex-Metadata' => $options['flexMetadata']]); $payload = $this->version->fetch('GET', $this->uri, [], [], $headers); return new PluginReleaseInstance( $this->version, $payload, $this->solution['sid'] ); } /** * 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.PluginReleaseContext ' . \implode(' ', $context) . ']'; } }