Details of a user or group subscribing to a filter.

interface FilterSubscription {
    group?: GroupName;
    id?: number;
    user?: User;
}

Properties

Properties

group?: GroupName

The group subscribing to filter.

id?: number

The ID of the filter subscription.

user?: User

The user subscribing to filter.