interface ChildrenResponse {
    childPosition?: null | number;
    id?: string;
    spaceId?: string;
    status?: OnlyArchivedAndCurrentContentStatus;
    title?: string;
    type?: string;
}

Hierarchy

  • Record<string, unknown>
    • ChildrenResponse

Properties

childPosition?: null | number

Numerical value indicating position of the content relative to its siblings (with the same parentId) within the content tree. If the content is sorted by childPosition, it will reflect the default content ordering within the content tree.

id?: string

ID of the child content.

spaceId?: string

ID of the space the content is in.

The status of the content.

title?: string

Title of the child content.

type?: string

Hierarchical content type (database/embed/folder/page/whiteboard).