Shows whether a piece of content has attachments, comments, or child pages/whiteboards. Note, this doesn't actually contain the child objects.

interface ContentChildType {
    _expandable?: {
        all?: string;
        attachment?: string;
        comment?: string;
        database?: string;
        embed?: string;
        folder?: string;
        page?: string;
        whiteboard?: string;
    } & {
        [key: string]: unknown;
    };
    attachment?: {
        _links: GenericLinks;
        value: boolean;
    } & {
        [key: string]: unknown;
    };
    comment?: {
        _links: GenericLinks;
        value: boolean;
    } & {
        [key: string]: unknown;
    };
    page?: {
        _links: GenericLinks;
        value: boolean;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • ContentChildType

Properties

_expandable?: {
    all?: string;
    attachment?: string;
    comment?: string;
    database?: string;
    embed?: string;
    folder?: string;
    page?: string;
    whiteboard?: string;
} & {
    [key: string]: unknown;
}
attachment?: {
    _links: GenericLinks;
    value: boolean;
} & {
    [key: string]: unknown;
}
comment?: {
    _links: GenericLinks;
    value: boolean;
} & {
    [key: string]: unknown;
}
page?: {
    _links: GenericLinks;
    value: boolean;
} & {
    [key: string]: unknown;
}