interface UserParams {
    filter: string;
    limit: number;
    offset: number;
    onlyMainUsers: boolean;
    onlyWithDisabledServices: boolean;
    search: string;
    sort: string;
    WITH_ADDRESS: boolean;
    WITH_USER_INFO: boolean;
    withRole: string;
    withRoles: boolean;
    [key: string]: QueryParam | QueryParam[];
}

Hierarchy (View Summary)

Indexable

Properties

filter: string
limit: number
offset: number
onlyMainUsers: boolean
onlyWithDisabledServices: boolean
search: string
sort: string
WITH_ADDRESS: boolean
WITH_USER_INFO: boolean
withRole: string
withRoles: boolean