Interface BoxStorageData

Interface for box storage data. Represents the result of querying box storage from an application.

interface BoxStorageData {
    decodedKey: string;
    decodedValue?: string;
    error?: string;
    exists: boolean;
    key: string;
    value: null | string;
}

Properties

decodedKey: string

Decoded key as UTF-8 string

decodedValue?: string

Decoded value as UTF-8 string (if valid UTF-8)

error?: string

Error message if query failed

exists: boolean

Whether the box exists

key: string

Base64url-encoded key

value: null | string

Raw value bytes as base64