interface DescendantsResponse {
    childPosition?: null | number;
    depth?: number;
    id?: string;
    parentId?: string;
    status?: OnlyArchivedAndCurrentContentStatus;
    title?: string;
    type?: string;
}

Hierarchy

  • Record<string, unknown>
    • DescendantsResponse

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.

depth?: number

Depth of the descendant in the content tree relative to the content specified in the request.

id?: string

ID of the descendant.

parentId?: string

ID of the parent content.

The status of the content.

title?: string

Title of the descendant.

type?: string

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