/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * email: "john.smith@example.com" * } */ export interface ListUsersRequest { /** * Email of guest to return */ email?: string; /** * String to search for users by name and email */ search?: string; /** * Field to sort users by */ sortField?: Flatfile.ListUsersSortField; /** * Direction of sorting */ sortDirection?: Flatfile.SortDirection; /** * Number of users to return in a page (default 20) */ pageSize?: number; /** * Based on pageSize, which page of users to return */ pageNumber?: number; }