claudius-chat-widget
    Preparing search index...

    Interface StoredAttachment

    Storage metadata the worker returns for each attachment it persisted while handling a request (R2 backend only).

    interface StoredAttachment {
        expiresAt: string;
        id: string;
        key: string;
        url?: string;
    }
    Index

    Properties

    Properties

    expiresAt: string

    ISO 8601 expiry of the stored file.

    id: string

    The ChatAttachment.id this entry describes.

    key: string

    Worker storage key to reference the file on later turns.

    url?: string

    Signed preview/download URL, when the worker can serve the file.