Type Alias ItemResultResponseBody

An item.

type ItemResultResponseBody = {
    actions: string[];
    collectionIds: string[];
    createdAt: string;
    creatorId?: string;
    description?: string;
    id: string;
    isFavorited: boolean;
    itemViews?: ItemViewsResponseBody;
    links: ItemLinksResponseBody;
    meta: ItemMetaResponseBody;
    name: string;
    ownerId?: string;
    resourceAttributes: unknown;
    resourceCreatedAt: string;
    resourceCustomAttributes: unknown;
    resourceId?: string;
    resourceLink?: string;
    resourceReloadEndTime?: string;
    resourceReloadStatus?: string;
    resourceSize?: ItemsResourceSizeResponseBody;
    resourceSubType?: string;
    resourceType: ItemResourceTypeEnum;
    resourceUpdatedAt: string;
    spaceId?: string;
    tenantId: string;
    thumbnailId?: string;
    updatedAt: string;
    updaterId?: string;
}
Index

Properties

actions: string[]

The actions that the user can perform on the item.

collectionIds: string[]
createdAt: string
creatorId?: string
description?: string
id: string
isFavorited: boolean
name: string
ownerId?: string
resourceAttributes: unknown
resourceCreatedAt: string
resourceCustomAttributes: unknown
resourceId?: string
resourceLink?: string
resourceReloadEndTime?: string
resourceReloadStatus?: string
resourceSubType?: string
resourceType: ItemResourceTypeEnum
resourceUpdatedAt: string
spaceId?: string
tenantId: string
thumbnailId?: string
updatedAt: string
updaterId?: string