@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface FilesFileResponse

    File metadata response.

    interface FilesFileResponse {
        contentType: string;
        createdAt: string;
        id: string;
        originalFilename: string;
        size: number;
        uploadedBy?: string;
    }
    Index

    Properties

    contentType: string

    The MIME content type of the file.

    createdAt: string

    The creation timestamp of the file in RFC 3339 format.

    id: string

    The unique identifier of the file.

    originalFilename: string

    The original filename as provided by the client.

    size: number

    The size of the file in bytes.

    uploadedBy?: string

    The ID of the user who uploaded the file. Null if uploaded anonymously.