macro_api
Version:
A comprehensive, production-ready API toolkit for various services including Stripe, Slack, SendGrid, Vercel, AWS S3, Docker Hub, and more.
18 lines (17 loc) • 345 B
TypeScript
/**
* Pagination parameters for Stripe API requests
*/
export default interface StripePaginationParams {
/**
* Maximum number of objects to return
*/
limit?: number;
/**
* Starting point for the list
*/
starting_after?: string;
/**
* Ending point for the list
*/
ending_before?: string;
}