macro_api
Version:
A comprehensive, production-ready API toolkit for various services including Stripe, Slack, SendGrid, Vercel, AWS S3, Docker Hub, and more.
19 lines (18 loc) • 379 B
TypeScript
/**
* Authentication options for the PayPal API
*/
export default interface PayPalAuthOptions {
/**
* PayPal Client ID for authentication
*/
clientId: string;
/**
* PayPal Client Secret for authentication
*/
clientSecret: string;
/**
* Whether to use the sandbox environment
* (default: false)
*/
sandbox?: boolean;
}