React Native Firebase
    Preparing search index...

    The full set of object metadata, including read-only properties.

    interface FullMetadata {
        bucket: string;
        cacheControl?: string;
        contentDisposition?: string;
        contentEncoding?: string;
        contentLanguage?: string;
        contentType?: string;
        customMetadata?: { [key: string]: string };
        downloadTokens: string[] | undefined;
        fullPath: string;
        generation: string;
        md5Hash?: string;
        metageneration: string;
        name: string;
        ref?: StorageReference;
        size: number;
        timeCreated: string;
        updated: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bucket: string

    The bucket this object is contained in.

    cacheControl?: string
    contentDisposition?: string
    contentEncoding?: string
    contentLanguage?: string
    contentType?: string
    customMetadata?: { [key: string]: string }
    downloadTokens: string[] | undefined

    Tokens to allow access to the download URL.

    fullPath: string

    The full path of this object.

    generation: string
    md5Hash?: string

    A Base64-encoded MD5 hash of the object being uploaded.

    metageneration: string
    name: string

    The short name of this object, which is the last component of the full path. For example, if fullPath is 'full/path/image.png', name is 'image.png'.

    StorageReference associated with this upload.

    size: number

    The size of this object, in bytes.

    timeCreated: string

    A date string representing when this object was created.

    updated: string

    A date string representing when this object was last updated.