interface ListUsersOptions {
    groupIds?: string;
    languageIds?: string;
    lastSeenFrom?: string;
    lastSeenTo?: string;
    limit?: number;
    offset?: number;
    orderBy?: string;
    organizationRoles?: OrganizationRoles[];
    projectIds?: string;
    projectRoles?: ProjectRoles[];
    search?: string;
    status?: UsersModel.Status;
    teamId?: number;
    twoFactor?: TwoFactor;
}

Hierarchy (view full)

Properties

groupIds?: string
languageIds?: string
lastSeenFrom?: string
lastSeenTo?: string
limit?: number
offset?: number
orderBy?: string
organizationRoles?: OrganizationRoles[]
projectIds?: string
projectRoles?: ProjectRoles[]
search?: string
teamId?: number
twoFactor?: TwoFactor