Package version:

interface FileHttpHeaders {
    fileCacheControl?: string;
    fileContentDisposition?: string;
    fileContentEncoding?: string;
    fileContentLanguage?: string;
    fileContentMD5?: Uint8Array;
    fileContentType?: string;
}

Properties

fileCacheControl?: string

Optional. Sets the file's cache control. If specified, this property is stored with the file and returned with a read request.

fileContentDisposition?: string

Optional. Sets the file's Content-Disposition header.

fileContentEncoding?: string

Optional. Sets the file's content encoding. If specified, this property is stored with the file and returned with a read request.

fileContentLanguage?: string

Optional. Set the file's content language. If specified, this property is stored with the file and returned with a read request.

fileContentMD5?: Uint8Array

Optional. An MD5 hash of the file content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded.

fileContentType?: string

Optional. Sets the file's content type. If specified, this property is stored with the file and returned with a read request.