Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SearchV2Object

import type { SearchV2Object } from "https://esm.sh/@supabase/storage-js@2.99.0/dist/index.d.mts";

File object returned by the List V2 API (listV2() method) Objects and folders are returned in separate arrays - this type represents actual files only. Use SearchV2Folder for folder entries.

interface SearchV2Object {
created_at: string;
id: string;
key?: string;
last_accessed_at: string;
metadata: FileMetadata | null;
name: string;
updated_at: string;
}

§Properties

§
created_at: string
[src]

Creation timestamp

§
id: string
[src]

Unique identifier for the file

§
key?: string
[src]

Full object key/path

§
last_accessed_at: string
[src]
§
metadata: FileMetadata | null
[src]

File metadata including size, mimetype, etc. (null if not yet set)

§
name: string
[src]

File name

§
updated_at: string
[src]

Last update timestamp