Request body for updating a generic user area. Only non-null properties are applied.

interface IUpdateUserAreaRequest {
    comment?: string;
    data?: string;
    name?: string;
}

Implemented by

Properties

Properties

comment?: string

The new comment. null leaves it unchanged.

data?: string

The new data string. null leaves it unchanged.

name?: string

The new name for the user area. null leaves it unchanged. Reserved names are rejected.