# GetServerResourcesResponse ## Example Usage ```typescript import { GetServerResourcesResponse, Protocol } from "@lukehagar/plexjs/sdk/models/operations"; let value: GetServerResourcesResponse = { contentType: "", statusCode: 102, rawResponse: new Response("{\"message\": \"hello world\"}", { headers: { "Content-Type": "application/json" }, }), plexDevices: [ { name: "", product: "Generic Cotton Pants", productVersion: "", platform: "", platformVersion: "", device: "Desktop", clientIdentifier: "", createdAt: new Date("2019-06-24T11:38:02Z"), lastSeenAt: new Date("2019-06-24T11:38:02Z"), provides: "", ownerId: 828940, sourceTitle: "", publicAddress: "", accessToken: "", owned: false, home: false, synced: false, relay: false, presence: false, httpsRequired: false, publicAddressMatches: false, dnsRebindingProtection: false, natLoopbackSupported: false, connections: [ { protocol: Protocol.Http, address: "72792 Medhurst Mountains", port: 14619, uri: "https://kaleidoscopic-status.net", local: false, relay: false, iPv6: false, }, ], }, ], }; ``` ## Fields | Field | Type | Required | Description | | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | | `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation | | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation | | `rawResponse` | [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing | | `plexDevices` | [operations.PlexDevice](../../../sdk/models/operations/plexdevice.md)[] | :heavy_minus_sign: | List of Plex Devices. This includes Plex hosted servers and clients |