Type Alias CollectionResultResponseBody

A collection.

type CollectionResultResponseBody = {
    createdAt: string;
    creatorId?: string;
    description?: string;
    full?: boolean;
    id: string;
    itemCount: number;
    links: CollectionLinksResponseBody;
    meta?: CollectionMetaResponseBody;
    name: string;
    tenantId: string;
    type: "private" | "public" | "favorite" | "publicgoverned";
    updatedAt: string;
    updaterId?: string;
}
Index

Properties

createdAt: string

The RFC3339 datetime when the collection was created.

creatorId?: string
description?: string
full?: boolean
id: string
itemCount: number
name: string
tenantId: string
type: "private" | "public" | "favorite" | "publicgoverned"
updatedAt: string
updaterId?: string