FormRecognizerRequestBody type

A request input that can be uploaded as binary data to the Form Recognizer service. Form Recognizer treats string inputs as URLs, so to send a string as a binary input, first convert the string to one of the following input types.

type FormRecognizerRequestBody =
  | NodeJS.ReadableStream
  | Blob
  | ArrayBuffer
  | ArrayBufferView