FileUploadMetadata interface

The JSON 'metadata' part of a multipart/form-data file upload: the full file name/path and custom key/value metadata. The parsing mode and extraction mode are both chosen by the service and are not supplied by the caller.

Properties

fileName

The full relative file name/path to store the file under (prefixes are derived from it).

metadata

Custom key/value metadata to store with the file.

Property Details

fileName

The full relative file name/path to store the file under (prefixes are derived from it).

fileName?: string

Property Value

string

metadata

Custom key/value metadata to store with the file.

metadata?: Record<string, string>

Property Value

Record<string, string>