Type Alias ItemsUpdateItemRequestBody

type ItemsUpdateItemRequestBody = {
    description?: string;
    name?: string;
    resourceAttributes?: unknown;
    resourceCustomAttributes?: unknown;
    resourceId?: string;
    resourceLink?: string;
    resourceSubType?: string;
    resourceType: ItemResourceTypeEnum;
    resourceUpdatedAt?: string;
    spaceId?: string;
    thumbnailId?: string;
}
Index

Properties

description?: string
name?: string
resourceAttributes?: unknown
resourceCustomAttributes?: unknown
resourceId?: string

The case-sensitive string used to search for an item by resourceId. If resourceId is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both.

resourceLink?: string

The case-sensitive string used to search for an item by resourceLink. If resourceLink is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both.

resourceSubType?: string

Optional field defining the item's subtype, if any.

resourceType: ItemResourceTypeEnum

The case-sensitive string defining the item's type.

resourceUpdatedAt?: string

The RFC3339 datetime when the resource that the item references was last updated.

spaceId?: string

The space's unique identifier.

thumbnailId?: string

The item thumbnail's unique identifier. This is optional for internal resources.