Skip to content

BucketObject

type BucketObject = {
contentType?: string;
key: string;
metadata: Record<string, string>;
size: number;
updatedAt: Date;
};

Defined in: client/src/buckets/buckets.ts:4

Metadata describing one stored object, mirroring the server’s BucketObject.

optional contentType?: string;

Defined in: client/src/buckets/buckets.ts:7


key: string;

Defined in: client/src/buckets/buckets.ts:5


metadata: Record<string, string>;

Defined in: client/src/buckets/buckets.ts:8


size: number;

Defined in: client/src/buckets/buckets.ts:6


updatedAt: Date;

Defined in: client/src/buckets/buckets.ts:9