/** * This file was auto-generated by Fern from our API Definition. */ export interface HistoryGetAllRequest { /** * How many history items to return at maximum. Can not exceed 1000, defaults to 100. */ page_size?: number; /** * After which history_item_id to start fetching, use this parameter to paginate across a large collection of history items. In case this parameter is not provided history items will be fetched starting from the most recently created one ordered descending by their creation date. */ start_after_history_item_id?: string; }