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

    Interface Content

    Base object for all content types.

    interface Content {
        _expandable: {
            ancestors?: string;
            body?: string;
            children?: string;
            childTypes?: string;
            container?: string;
            descendants?: string;
            history?: string;
            metadata?: string;
            operations?: string;
            restrictions?: string;
            space?: string;
            version?: string;
        };
        _links?: GenericLinks;
        ancestors?: Models.Content[];
        body?: {
            _expandable: {
                anonymous_export_view?: string;
                atlas_doc_format?: string;
                editor?: string;
                editor2?: string;
                export_view?: string;
                storage?: string;
                styled_view?: string;
                view?: string;
            };
            anonymous_export_view?: Models.ContentBody;
            atlas_doc_format?: Models.ContentBody;
            editor2?: Models.ContentBody;
            export_view?: Models.ContentBody;
            storage?: Models.ContentBody;
            styled_view?: Models.ContentBody;
            view?: Models.ContentBody;
        };
        children?: ContentChildren;
        childTypes?: ContentChildType;
        container?: Container;
        descendants?: ContentChildren;
        history?: ContentHistory;
        id: string;
        operations?: OperationCheckResult[];
        restrictions?: {
            _links: GenericLinks;
            read?: ContentRestriction;
            update?: ContentRestriction;
        };
        space?: Models.Space;
        status: string;
        title: string;
        type: string;
        version?: Version;
    }
    Index

    Properties

    _expandable: {
        ancestors?: string;
        body?: string;
        children?: string;
        childTypes?: string;
        container?: string;
        descendants?: string;
        history?: string;
        metadata?: string;
        operations?: string;
        restrictions?: string;
        space?: string;
        version?: string;
    }
    _links?: GenericLinks
    ancestors?: Models.Content[]
    body?: {
        _expandable: {
            anonymous_export_view?: string;
            atlas_doc_format?: string;
            editor?: string;
            editor2?: string;
            export_view?: string;
            storage?: string;
            styled_view?: string;
            view?: string;
        };
        anonymous_export_view?: Models.ContentBody;
        atlas_doc_format?: Models.ContentBody;
        editor2?: Models.ContentBody;
        export_view?: Models.ContentBody;
        storage?: Models.ContentBody;
        styled_view?: Models.ContentBody;
        view?: Models.ContentBody;
    }
    children?: ContentChildren
    childTypes?: ContentChildType
    container?: Container
    descendants?: ContentChildren
    history?: ContentHistory
    id: string
    operations?: OperationCheckResult[]
    restrictions?: {
        _links: GenericLinks;
        read?: ContentRestriction;
        update?: ContentRestriction;
    }
    space?: Models.Space
    status: string
    title: string
    type: string
    version?: Version