Skip to main content

firebase_admin/auth/users/
query.rs

1//! Pagination helpers for `accounts:batchGet` (list users).
2
3use crate::auth::users::model::UserRecord;
4
5/// One page of a `list_users` call.
6#[derive(Debug)]
7pub struct UserPage {
8    /// Users returned on this page.
9    pub users: Vec<UserRecord>,
10    /// Token to pass to the next `list_users` call, if more pages remain.
11    pub next_page_token: Option<String>,
12}