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

    Interface ContentProperty

    interface ContentProperty {
        _links: GenericLinks;
        content?: Models.Content;
        id: number;
        key: string;
        value: {};
        version?: {
            message: string;
            minorEdit: boolean;
            number: number;
            when: string;
        };
    }
    Index

    Properties

    _links: GenericLinks
    content?: Models.Content
    id: number
    key: string
    value: {}

    The value of the content property. This can be empty or a complex object.

    version?: { message: string; minorEdit: boolean; number: number; when: string }