/** * This file was auto-generated by Fern from our API Definition. */ /** * pagination info * * @example * { * currentPage: 3, * pageCount: 50, * totalCount: 100 * } */ export interface Pagination { /** current page of results */ currentPage: number; /** total number of pages of results */ pageCount: number; /** total available results */ totalCount: number; }