{
  "type": "module",
  "source": "doc/api/api-client.md",
  "modules": [
    {
      "textRaw": "Class: Client",
      "name": "class:_client",
      "type": "module",
      "desc": "<p>Extends: <code>undici.Dispatcher</code></p>\n<p>A basic HTTP/1.1 client, mapped on top a single TCP/TLS connection. Pipelining is disabled by default.</p>\n<p>Requests are not guaranteed to be dispatched in order of invocation.</p>",
      "signatures": [
        {
          "textRaw": "`new Client(url[, options])`",
          "name": "Client",
          "type": "ctor",
          "params": [
            {
              "name": "url"
            },
            {
              "name": "options",
              "optional": true
            }
          ],
          "desc": "<p>Arguments:</p>\n<ul>\n<li><strong>url</strong> <code>URL | string</code> - Should only include the <strong>protocol, hostname, and port</strong>.</li>\n<li><strong>options</strong> <code>ClientOptions</code> (optional)</li>\n</ul>\n<p>Returns: <code>Client</code></p>",
          "modules": [
            {
              "textRaw": "Parameter: `ClientOptions`",
              "name": "parameter:_`clientoptions`",
              "type": "module",
              "desc": "<ul>\n<li><strong>bodyTimeout</strong> <code>number | null</code> (optional) - Default: <code>300e3</code> - The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use <code>0</code> to disable it entirely. Defaults to 300 seconds. Please note the <code>timeout</code> will be reset if you keep writing data to the socket everytime.</li>\n<li><strong>headersTimeout</strong> <code>number | null</code> (optional) - Default: <code>300e3</code> - The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers while not sending the request. Defaults to 300 seconds.</li>\n<li><strong>keepAliveMaxTimeout</strong> <code>number | null</code> (optional) - Default: <code>600e3</code> - The maximum allowed <code>keepAliveTimeout</code>, in milliseconds, when overridden by <em>keep-alive</em> hints from the server. Defaults to 10 minutes.</li>\n<li><strong>keepAliveTimeout</strong> <code>number | null</code> (optional) - Default: <code>4e3</code> - The timeout, in milliseconds, after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by <em>keep-alive</em> hints from the server. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive#directives\">MDN: HTTP - Headers - Keep-Alive directives</a> for more details. Defaults to 4 seconds.</li>\n<li><strong>keepAliveTimeoutThreshold</strong> <code>number | null</code> (optional) - Default: <code>2e3</code> - A number of milliseconds subtracted from server <em>keep-alive</em> hints when overriding <code>keepAliveTimeout</code> to account for timing inaccuracies caused by e.g. transport latency. Defaults to 2 seconds.</li>\n<li><strong>maxHeaderSize</strong> <code>number | null</code> (optional) - Default: <code>--max-http-header-size</code> or <code>16384</code> - The maximum length of request headers in bytes. Defaults to Node.js' --max-http-header-size or 16KiB.</li>\n<li><strong>maxResponseSize</strong> <code>number | null</code> (optional) - Default: <code>-1</code> - The maximum length of response body in bytes. Set to <code>-1</code> to disable.</li>\n<li><strong>webSocket</strong> <code>WebSocketOptions</code> (optional) - WebSocket-specific configuration options.\n<ul>\n<li><strong>maxFragments</strong> <code>number</code> (optional) - Default: <code>131072</code> - Maximum number of fragments in a message. Set to 0 to disable the limit.</li>\n<li><strong>maxPayloadSize</strong> <code>number</code> (optional) - Default: <code>134217728</code> (128 MB) - Maximum allowed payload size in bytes for WebSocket messages. Applied to uncompressed messages, compressed frame payloads, and decompressed (permessage-deflate) messages. Set to 0 to disable the limit.</li>\n</ul>\n</li>\n<li><strong>pipelining</strong> <code>number | null</code> (optional) - Default: <code>1</code> - The amount of concurrent requests to be sent over the single TCP/TLS connection according to <a href=\"https://tools.ietf.org/html/rfc7230#section-6.3.2\">RFC7230</a>. Carefully consider your workload and environment before enabling concurrent requests as pipelining may reduce performance if used incorrectly. Pipelining is sensitive to network stack settings as well as head of line blocking caused by e.g. long running requests. Set to <code>0</code> to disable keep-alive connections. This option has no effect once HTTP/2 is negotiated — see <code>maxConcurrentStreams</code> for the h2 dispatch ceiling.</li>\n<li><strong>connect</strong> <code>ConnectOptions | Function | null</code> (optional) - Default: <code>null</code> - Configures how undici establishes TCP/TLS connections. Accepts two forms:\n<ul>\n<li><strong>Object (<code>ConnectOptions</code>)</strong>: Options passed directly to the internal <a href=\"/docs/docs/api/Connector.html\"><code>buildConnector()</code></a>. This is the simplest way to customize TLS or socket behavior (e.g., setting <code>rejectUnauthorized</code>, <code>ca</code>, <code>socketPath</code>). See <a href=\"#parameter-connectoptions\"><code>ConnectOptions</code></a> for available fields.</li>\n<li><strong>Function</strong>: A custom connector with the signature <code>(options, callback)</code>, where <code>options</code> contains <code>{ hostname, host, protocol, port, servername, localAddress, httpSocket }</code> and <code>callback</code> follows <code>(error, socket)</code>. Useful when you need full control over socket creation, such as adding custom validation or proxy logic. When a function is provided, undici wraps it to automatically inject <code>socketPath</code> and <code>allowH2</code> into the <code>options</code> argument if those values are set on the client.</li>\n</ul>\n</li>\n<li><strong>strictContentLength</strong> <code>Boolean</code> (optional) - Default: <code>true</code> - Whether to treat request content length mismatches as errors. If true, an error is thrown when the request content-length header doesn't match the length of the request body. <strong>Security Warning:</strong> Disabling this option can expose your application to HTTP Request Smuggling attacks, where mismatched content-length headers cause servers and proxies to interpret request boundaries differently. This can lead to cache poisoning, credential hijacking, and bypassing security controls. Only disable this in controlled environments where you fully trust the request source.</li>\n<li><strong>autoSelectFamily</strong>: <code>boolean</code> (optional) - Default: depends on local Node version, on Node 18.13.0 and above is <code>false</code>. Enables a family autodetection algorithm that loosely implements section 5 of <a href=\"https://tools.ietf.org/html/rfc8305#section-5\">RFC 8305</a>. See <a href=\"https://nodejs.org/api/net.html#socketconnectoptions-connectlistener\">here</a> for more details. This option is ignored if not supported by the current Node version.</li>\n<li><strong>autoSelectFamilyAttemptTimeout</strong>: <code>number</code> - Default: depends on local Node version, on Node 18.13.0 and above is <code>250</code>. The amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the <code>autoSelectFamily</code> option. See <a href=\"https://nodejs.org/api/net.html#socketconnectoptions-connectlistener\">here</a> for more details.</li>\n<li><strong>allowH2</strong>: <code>boolean</code> - Default: <code>true</code>. Enables support for H2 if the server has assigned bigger priority to it through ALPN negotiation.</li>\n<li><strong>useH2c</strong>: <code>boolean</code> - Default: <code>false</code>. Enforces h2c for non-https connections.</li>\n<li><strong>maxConcurrentStreams</strong>: <code>number</code> - Default: <code>100</code>. The maximum number of concurrent HTTP/2 streams per session. When <code>allowH2</code> negotiates h2, this — not <code>pipelining</code> (which is HTTP/1.1 only, per <a href=\"https://tools.ietf.org/html/rfc7230#section-6.3.2\">RFC7230</a>) — is the ceiling the Client uses to dispatch in-flight requests on a shared session. The same value is advertised to the server as <code>peerMaxConcurrentStreams</code>, capping how many streams the server may push back. The initial value is replaced by the server's <code>SETTINGS_MAX_CONCURRENT_STREAMS</code> whenever the server sends one, so a user-supplied value acts as a pre-<code>SETTINGS</code> default rather than a hard cap.</li>\n<li><strong>initialWindowSize</strong>: <code>number</code> (optional) - Default: <code>262144</code> (256KB). Sets the HTTP/2 stream-level flow-control window size (SETTINGS_INITIAL_WINDOW_SIZE). Must be a positive integer greater than 0. This default is higher than Node.js core's default (65535 bytes) to improve throughput, Node's choice is very conservative for current high-bandwith networks. See <a href=\"https://datatracker.ietf.org/doc/html/rfc7540#section-6.9.2\">RFC 7540 Section 6.9.2</a> for more details.</li>\n<li><strong>connectionWindowSize</strong>: <code>number</code> (optional) - Default <code>524288</code> (512KB). Sets the HTTP/2 connection-level flow-control window size using <code>ClientHttp2Session.setLocalWindowSize()</code>. Must be a positive integer greater than 0. This provides better flow control for the entire connection across multiple streams. See <a href=\"https://nodejs.org/api/http2.html#clienthttp2sessionsetlocalwindowsize\">Node.js HTTP/2 documentation</a> for more details.</li>\n<li><strong>pingInterval</strong>: <code>number</code> - Default: <code>60e3</code>. The time interval in milliseconds between PING frames sent to the server. Set to <code>0</code> to disable PING frames. This is only applicable for HTTP/2 connections. This will emit a <code>ping</code> event on the client with the duration of the ping in milliseconds.</li>\n</ul>\n<blockquote>\n<p><strong>Notes about HTTP/2</strong></p>\n<ul>\n<li>It only works under TLS connections. h2c is not supported.</li>\n<li>The server must support HTTP/2 and choose it as the protocol during the ALPN negotiation.\n<ul>\n<li>The server must not have a bigger priority for HTTP/1.1 than HTTP/2.</li>\n</ul>\n</li>\n<li>Pseudo headers are automatically attached to the request. If you try to set them, they will be overwritten.\n<ul>\n<li>The <code>:path</code> header is automatically set to the request path.</li>\n<li>The <code>:method</code> header is automatically set to the request method.</li>\n<li>The <code>:scheme</code> header is automatically set to the request scheme.</li>\n<li>The <code>:authority</code> header is automatically set to the request <code>host[:port]</code>.</li>\n</ul>\n</li>\n<li><code>PUSH</code> frames are yet not supported.</li>\n</ul>\n</blockquote>",
              "modules": [
                {
                  "textRaw": "Parameter: `ConnectOptions`",
                  "name": "parameter:_`connectoptions`",
                  "type": "module",
                  "desc": "<p>Every Tls option, see <a href=\"https://nodejs.org/api/tls.html#tls_tls_connect_options_callback\">here</a>.\nFurthermore, the following options can be passed:</p>\n<ul>\n<li><strong>socketPath</strong> <code>string | null</code> (optional) - Default: <code>null</code> - An IPC endpoint, either Unix domain socket or Windows named pipe.</li>\n<li><strong>maxCachedSessions</strong> <code>number | null</code> (optional) - Default: <code>100</code> - Maximum number of TLS cached sessions. Use 0 to disable TLS session caching. Default: 100.</li>\n<li><strong>timeout</strong> <code>number | null</code> (optional) -  In milliseconds, Default <code>10e3</code>.</li>\n<li><strong>servername</strong> <code>string | null</code> (optional)</li>\n<li><strong>keepAlive</strong> <code>boolean | null</code> (optional) - Default: <code>true</code> - TCP keep-alive enabled</li>\n<li><strong>keepAliveInitialDelay</strong> <code>number | null</code> (optional) - Default: <code>60000</code> - TCP keep-alive interval for the socket in milliseconds</li>\n</ul>",
                  "displayName": "Parameter: `ConnectOptions`"
                }
              ],
              "displayName": "Parameter: `ClientOptions`"
            },
            {
              "textRaw": "Example - Basic Client instantiation",
              "name": "example_-_basic_client_instantiation",
              "type": "module",
              "desc": "<p>This will instantiate the undici Client, but it will not connect to the origin until something is queued. Consider using <code>client.connect</code> to prematurely connect to the origin, or just call <code>client.request</code>.</p>\n<pre><code class=\"language-js\">'use strict'\nimport { Client } from 'undici'\n\nconst client = new Client('http://localhost:3000')\n</code></pre>",
              "displayName": "Example - Basic Client instantiation"
            },
            {
              "textRaw": "Example - Connect with TLS options (object form)",
              "name": "example_-_connect_with_tls_options_(object_form)",
              "type": "module",
              "desc": "<p>Pass a <code>ConnectOptions</code> object to customize the TLS connection. The options are forwarded to the internal <code>buildConnector()</code>.</p>\n<pre><code class=\"language-js\">'use strict'\nimport { Client } from 'undici'\nimport fs from 'node:fs'\n\nconst client = new Client('https://localhost:3000', {\n  connect: {\n    rejectUnauthorized: false,\n    ca: fs.readFileSync('./ca-cert.pem')\n  }\n})\n</code></pre>",
              "displayName": "Example - Connect with TLS options (object form)"
            },
            {
              "textRaw": "Example - Connect via Unix domain socket",
              "name": "example_-_connect_via_unix_domain_socket",
              "type": "module",
              "desc": "<p>Use the <code>socketPath</code> option to connect through an IPC endpoint instead of a TCP connection.</p>\n<pre><code class=\"language-js\">'use strict'\nimport { Client } from 'undici'\n\nconst client = new Client('http://localhost:3000', {\n  connect: {\n    socketPath: '/var/run/docker.sock'\n  }\n})\n</code></pre>",
              "displayName": "Example - Connect via Unix domain socket"
            },
            {
              "textRaw": "Example - Custom connector (function form)",
              "name": "example_-_custom_connector_(function_form)",
              "type": "module",
              "desc": "<p>Pass a function for full control over socket creation. This allows you to perform additional checks on the socket, use a proxy, or implement custom connection logic.</p>\n<blockquote>\n<p><strong>Note:</strong> When a function is provided, undici wraps it to automatically inject <code>socketPath</code> and <code>allowH2</code> into the first argument (<code>options</code>) when those values are set on the client.</p>\n</blockquote>\n<pre><code class=\"language-js\">'use strict'\nimport { Client, buildConnector } from 'undici'\n\nconst connector = buildConnector({ rejectUnauthorized: false })\nconst client = new Client('https://localhost:3000', {\n  connect (opts, cb) {\n    connector(opts, (err, socket) => {\n      if (err) {\n        cb(err)\n      } else if (/* assertion */) {\n        socket.destroy()\n        cb(new Error('kaboom'))\n      } else {\n        cb(null, socket)\n      }\n    })\n  }\n})\n</code></pre>\n<p>For more details on building custom connectors, see <a href=\"/docs/docs/api/Connector.html\">Connector</a>.</p>",
              "displayName": "Example - Custom connector (function form)"
            }
          ]
        }
      ],
      "modules": [
        {
          "textRaw": "Instance Methods",
          "name": "instance_methods",
          "type": "module",
          "methods": [
            {
              "textRaw": "`Client.close([callback])`",
              "name": "close",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>Implements <a href=\"/docs/docs/api/Dispatcher.html#dispatcherclosecallback-promise\"><code>Dispatcher.close([callback])</code></a>.</p>"
            },
            {
              "textRaw": "`Client.destroy([error, callback])`",
              "name": "destroy",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "error",
                      "optional": true
                    },
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>Implements <a href=\"/docs/docs/api/Dispatcher.html#dispatcherdestroyerror-callback-promise\"><code>Dispatcher.destroy([error, callback])</code></a>.</p>\n<p>Waits until socket is closed before invoking the callback (or returning a promise if no callback is provided).</p>"
            },
            {
              "textRaw": "`Client.connect(options[, callback])`",
              "name": "connect",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#dispatcherconnectoptions-callback\"><code>Dispatcher.connect(options[, callback])</code></a>.</p>"
            },
            {
              "textRaw": "`Client.dispatch(options, handlers)`",
              "name": "dispatch",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "handlers"
                    }
                  ]
                }
              ],
              "desc": "<p>Implements <a href=\"/docs/docs/api/Dispatcher.html#dispatcherdispatchoptions-handler\"><code>Dispatcher.dispatch(options, handlers)</code></a>.</p>"
            },
            {
              "textRaw": "`Client.pipeline(options, handler)`",
              "name": "pipeline",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "handler"
                    }
                  ]
                }
              ],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#dispatcherpipelineoptions-handler\"><code>Dispatcher.pipeline(options, handler)</code></a>.</p>"
            },
            {
              "textRaw": "`Client.request(options[, callback])`",
              "name": "request",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#dispatcherrequestoptions-callback\"><code>Dispatcher.request(options [, callback])</code></a>.</p>"
            },
            {
              "textRaw": "`Client.stream(options, factory[, callback])`",
              "name": "stream",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "factory"
                    },
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#dispatcherstreamoptions-factory-callback\"><code>Dispatcher.stream(options, factory[, callback])</code></a>.</p>"
            },
            {
              "textRaw": "`Client.upgrade(options[, callback])`",
              "name": "upgrade",
              "type": "method",
              "signatures": [
                {
                  "params": [
                    {
                      "name": "options"
                    },
                    {
                      "name": "callback",
                      "optional": true
                    }
                  ]
                }
              ],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#dispatcherupgradeoptions-callback\"><code>Dispatcher.upgrade(options[, callback])</code></a>.</p>"
            }
          ],
          "displayName": "Instance Methods"
        },
        {
          "textRaw": "Instance Properties",
          "name": "instance_properties",
          "type": "module",
          "properties": [
            {
              "textRaw": "`Client.closed`",
              "name": "closed",
              "type": "property",
              "desc": "<ul>\n<li><code>boolean</code></li>\n</ul>\n<p><code>true</code> after <code>client.close()</code> has been called.</p>"
            },
            {
              "textRaw": "`Client.destroyed`",
              "name": "destroyed",
              "type": "property",
              "desc": "<ul>\n<li><code>boolean</code></li>\n</ul>\n<p><code>true</code> after <code>client.destroyed()</code> has been called or <code>client.close()</code> has been called and the client shutdown has completed.</p>"
            },
            {
              "textRaw": "`Client.pipelining`",
              "name": "pipelining",
              "type": "property",
              "desc": "<ul>\n<li><code>number</code></li>\n</ul>\n<p>Property to get and set the pipelining factor.</p>"
            }
          ],
          "displayName": "Instance Properties"
        },
        {
          "textRaw": "Instance Events",
          "name": "instance_events",
          "type": "module",
          "events": [
            {
              "textRaw": "Event: `'connect'`",
              "name": "connect",
              "type": "event",
              "params": [],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#event-connect\">Dispatcher Event: <code>'connect'</code></a>.</p>\n<p>Parameters:</p>\n<ul>\n<li><strong>origin</strong> <code>URL</code></li>\n<li><strong>targets</strong> <code>Array&#x3C;Dispatcher></code></li>\n</ul>\n<p>Emitted when a socket has been created and connected. The client will connect once <code>client.size > 0</code>.</p>",
              "modules": [
                {
                  "textRaw": "Example - Client connect event",
                  "name": "example_-_client_connect_event",
                  "type": "module",
                  "desc": "<pre><code class=\"language-js\">import { createServer } from 'http'\nimport { Client } from 'undici'\nimport { once } from 'events'\n\nconst server = createServer((request, response) => {\n  response.end('Hello, World!')\n}).listen()\n\nawait once(server, 'listening')\n\nconst client = new Client(`http://localhost:${server.address().port}`)\n\nclient.on('connect', (origin) => {\n  console.log(`Connected to ${origin}`) // should print before the request body statement\n})\n\ntry {\n  const { body } = await client.request({\n    path: '/',\n    method: 'GET'\n  })\n  body.setEncoding('utf-8')\n  body.on('data', console.log)\n  client.close()\n  server.close()\n} catch (error) {\n  console.error(error)\n  client.close()\n  server.close()\n}\n</code></pre>",
                  "displayName": "Example - Client connect event"
                }
              ]
            },
            {
              "textRaw": "Event: `'disconnect'`",
              "name": "disconnect",
              "type": "event",
              "params": [],
              "desc": "<p>See <a href=\"/docs/docs/api/Dispatcher.html#event-disconnect\">Dispatcher Event: <code>'disconnect'</code></a>.</p>\n<p>Parameters:</p>\n<ul>\n<li><strong>origin</strong> <code>URL</code></li>\n<li><strong>targets</strong> <code>Array&#x3C;Dispatcher></code></li>\n<li><strong>error</strong> <code>Error</code></li>\n</ul>\n<p>Emitted when socket has disconnected. The error argument of the event is the error which caused the socket to disconnect. The client will reconnect if or once <code>client.size > 0</code>.</p>",
              "modules": [
                {
                  "textRaw": "Example - Client disconnect event",
                  "name": "example_-_client_disconnect_event",
                  "type": "module",
                  "desc": "<pre><code class=\"language-js\">import { createServer } from 'http'\nimport { Client } from 'undici'\nimport { once } from 'events'\n\nconst server = createServer((request, response) => {\n  response.destroy()\n}).listen()\n\nawait once(server, 'listening')\n\nconst client = new Client(`http://localhost:${server.address().port}`)\n\nclient.on('disconnect', (origin) => {\n  console.log(`Disconnected from ${origin}`)\n})\n\ntry {\n  await client.request({\n    path: '/',\n    method: 'GET'\n  })\n} catch (error) {\n  console.error(error.message)\n  client.close()\n  server.close()\n}\n</code></pre>",
                  "displayName": "Example - Client disconnect event"
                }
              ]
            },
            {
              "textRaw": "Event: `'drain'`",
              "name": "drain",
              "type": "event",
              "params": [],
              "desc": "<p>Emitted when pipeline is no longer busy.</p>\n<p>See <a href=\"/docs/docs/api/Dispatcher.html#event-drain\">Dispatcher Event: <code>'drain'</code></a>.</p>",
              "modules": [
                {
                  "textRaw": "Example - Client drain event",
                  "name": "example_-_client_drain_event",
                  "type": "module",
                  "desc": "<pre><code class=\"language-js\">import { createServer } from 'http'\nimport { Client } from 'undici'\nimport { once } from 'events'\n\nconst server = createServer((request, response) => {\n  response.end('Hello, World!')\n}).listen()\n\nawait once(server, 'listening')\n\nconst client = new Client(`http://localhost:${server.address().port}`)\n\nclient.on('drain', () => {\n  console.log('drain event')\n  client.close()\n  server.close()\n})\n\nconst requests = [\n  client.request({ path: '/', method: 'GET' }),\n  client.request({ path: '/', method: 'GET' }),\n  client.request({ path: '/', method: 'GET' })\n]\n\nawait Promise.all(requests)\n\nconsole.log('requests completed')\n</code></pre>",
                  "displayName": "Example - Client drain event"
                }
              ]
            },
            {
              "textRaw": "Event: `'error'`",
              "name": "error",
              "type": "event",
              "params": [],
              "desc": "<p>Invoked for user errors such as throwing in the <code>onResponseError</code> handler.</p>"
            }
          ],
          "displayName": "Instance Events"
        }
      ],
      "displayName": "Class: Client"
    }
  ]
}