interface UpdateContentProperty {
    id: string;
    key: string;
    value: {};
    version: {
        minorEdit?: boolean;
        number: number;
    };
}

Hierarchy (view full)

Properties

Properties

id: string

The ID of the content that the property belongs to.

key: string

The key of the property.

value: {}

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

Type declaration

    version: {
        minorEdit?: boolean;
        number: number;
    }

    The version number of the property.

    Type declaration

    • Optional minorEdit?: boolean

      If minorEdit is set to 'true', no notification email or activity stream will be generated for the change.

    • number: number

      The new version for the updated content property. Set this to the current version number incremented by one. To get the current version number, use 'Get content property' and retrieve version.number.

    Generated using TypeDoc v0.25.12