@rendley/sdk - v1.15.5
    Preparing search index...

    Interface StorageMediaData

    Canonical media payload exchanged between the storage controller and concrete providers.

    interface StorageMediaData {
        fileName?: string;
        hash: string;
        mediaId: string;
        mediaSource: File | Blob;
        mimeType?: string;
        name?: string;
        storedAt?: number;
        type?: string;
    }
    Index

    Properties

    fileName?: string
    hash: string

    Stable content hash used as the deduplication and lookup key.

    mediaId: string

    Library media identifier associated with this payload.

    mediaSource: File | Blob

    Raw source payload to store. A File may be preserved when the original filename/metadata matters.

    mimeType?: string
    name?: string
    storedAt?: number

    Timestamp indicating when the payload was stored by a provider, when supported.

    type?: string