Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface ContentChildType

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

    interface ContentChildType {
        _expandable: {
            all?: string;
            attachment?: string;
            comment?: string;
            page?: string;
        };
        attachment?: { _links: GenericLinks; value: boolean };
        comment?: { _links: GenericLinks; value: boolean };
        page?: { _links: GenericLinks; value: boolean };
    }
    Index

    Properties

    _expandable: {
        all?: string;
        attachment?: string;
        comment?: string;
        page?: string;
    }
    attachment?: { _links: GenericLinks; value: boolean }
    comment?: { _links: GenericLinks; value: boolean }
    page?: { _links: GenericLinks; value: boolean }