interface WhiteboardSingle {
    _links?: WhiteboardLinks;
    authorId?: string;
    createdAt?: string;
    id?: string;
    ownerId?: string;
    parentId?: string;
    parentType?: ParentContentType;
    position?: null | number;
    spaceId?: string;
    status?: ContentStatus;
    title?: string;
    type?: string;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • WhiteboardSingle

Properties

authorId?: string

The account ID of the user who created this whiteboard originally.

createdAt?: string

Date and time when the whiteboard was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

id?: string

ID of the whiteboard.

ownerId?: string

The account ID of the user who owns this whiteboard.

parentId?: string

ID of the parent content, or null if there is no parent content.

parentType?: ParentContentType

Content type of the parent, or null if there is no parent.

position?: null | number

Position of the whiteboard within the given parent page tree.

spaceId?: string

ID of the space the whiteboard is in.

status?: ContentStatus

The status of the content.

title?: string

Title of the whiteboard.

type?: string

The content type of the object.

version?: Version