The description of the new/updated space. Note, only the 'plain' representation can be used for the description when creating or updating a space.

interface SpaceDescriptionCreate {
    plain: {
        representation?: string;
        value?: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • SpaceDescriptionCreate

Properties

Properties

plain: {
    representation?: string;
    value?: string;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optionalrepresentation?: string

    Set to 'plain'.

  • Optionalvalue?: string

    The space description.