@planet-a/affinity-node
Version:
API wrapper for the affinity.co API
14 lines (13 loc) • 376 B
TypeScript
export type PagedRequest = {
/**
* The number of items to return per page.
*
* Default is the maximum value of 500.
*/
page_size?: number;
/**
* The page token to retrieve the next page of items.
* if you do not pass the `page_size` parameter, the next page will have the default page size of 500.
*/
page_token?: string;
};