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

Item

import type { Item } from "https://aws-api.deno.dev/v0.3/services/mediastoredata.ts?docs=full";

A metadata entry for a folder or object.

interface Item {
ContentLength?: number | null;
ContentType?: string | null;
ETag?: string | null;
LastModified?: Date | number | null;
Name?: string | null;
Type?: ItemType | null;
}

§Properties

§
ContentLength?: number | null
[src]

The length of the item in bytes.

§
ContentType?: string | null
[src]

The content type of the item.

§
ETag?: string | null
[src]

The ETag that represents a unique instance of the item.

§
LastModified?: Date | number | null
[src]

The date and time that the item was last modified.

§
Name?: string | null
[src]

The name of the item.

§
Type?: ItemType | null
[src]

The item type (folder or object).