interface GetContentChildrenByType {
    expand?: string[];
    id: string;
    limit?: number;
    parentVersion?: number;
    start?: number;
    type: string;
}

Properties

expand?: string[]

A multi-value parameter indicating which properties of the content to expand.

id: string

The ID of the content to be queried for its children.

limit?: number

The maximum number of content to return per page. Note, this may be restricted by fixed system limits.

parentVersion?: number

The version of the parent content to retrieve children for. Currently, this only works for the latest version.

start?: number

The starting index of the returned content.

type: string

The type of children to return.

Generated using TypeDoc v0.25.12