/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface StartingAfterPaging {
    /** The number of results to fetch per page. */
    per_page?: number;
    /** The cursor to use in the next request to get the next page of results. */
    starting_after?: string;
}
