Skip to content

Files

24 lines (19 loc) · 2.04 KB

getusersresponse.md

File metadata and controls

24 lines (19 loc) · 2.04 KB

GetUsersResponse

Example Usage

import { GetUsersResponse } from "@lukehagar/plexjs/sdk/models/operations";

let value: GetUsersResponse = {
  contentType: "<value>",
  statusCode: 207,
  rawResponse: new Response("{\"message\": \"hello world\"}", {
    headers: { "Content-Type": "application/json" },
  }),
};

Fields

Field Type Required Description
contentType string ✔️ HTTP response content type for this operation
statusCode number ✔️ HTTP response status code for this operation
rawResponse Response ✔️ Raw HTTP response; suitable for custom response parsing
body Uint8Array N/A