/** * This file was auto-generated by Fern from our API Definition. */ import * as Airtop from "../../../../index"; /** * @example * { * offset: 1, * limit: 10 * } */ export interface SessionsListRequest { /** * A comma-separated list of IDs of the sessions to retrieve. */ sessionIds?: string | string[]; /** * Status of the session to get. */ status?: Airtop.SessionsListRequestStatus; /** * Offset for pagination. */ offset?: number; /** * Limit for pagination. */ limit?: number; }