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