@squidcloud/client
    Preparing search index...

    Interface GetFileMetadataResponse

    Represents the metadata details of a file stored in the bucket.

    interface GetFileMetadataResponse {
        filename: string;
        lastModified: Date;
        metadata: Record<string, string>;
        size: number;
    }
    Index

    Properties

    filename: string

    The name of the file.

    lastModified: Date

    The last modified timestamp of the file.

    metadata: Record<string, string>

    Additional metadata associated with the file.

    size: number

    The size of the file in bytes.