Change triggered by the Add Roles update action.

interface AddChannelRolesChange {
    change: string;
    nextValue: string[];
    previousValue: string[];
    type: "AddChannelRolesChange";
}

Properties

change: string
nextValue: string[]

Value after the change.

previousValue: string[]

Value before the change.

type: "AddChannelRolesChange"