Interface FoundUsers

Represents a list of found users.

interface FoundUsers {
    @type: "foundUsers";
    next_offset: string;
    user_ids: number[];
}

Properties

@type: "foundUsers"
next_offset: string

The offset for the next request. If empty, then there are no more results.

user_ids: number[]

Identifiers of the found users.