/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * offset: 1, * limit: 10 * } */ export interface FilesListRequest { /** * A comma-separated list of IDs of the sessionId of the files to retrieve. */ sessionIds?: string | string[]; /** * Offset for pagination. */ offset?: number; /** * Limit for pagination. */ limit?: number; }