interface ContentProperty {
    id?: string;
    key?: string;
    value?: unknown;
    version?: Version;
}

Hierarchy

  • Record<string, unknown>
    • ContentProperty

Properties

Properties

id?: string

ID of the property

key?: string

Key of the property

value?: unknown

Value of the property. Must be a valid JSON value.

version?: Version