/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CallbackEvents } from './callbackEvents.js'; /** CallBack Configuration that the merchant can provide to PayPal/Venmo. */ export interface CallbackConfiguration { /** An array of callback events merchant can subscribe to for the corresponding callback url. */ callbackEvents: CallbackEvents[]; /** Merchant provided CallBack url.PayPal/Venmo will use this url to call the merchant back when the events occur .PayPal/Venmo expects a secured url usually in the https format.merchant can append the cart id or other params part of the url as query or path params. */ callbackUrl: string; } export declare const callbackConfigurationSchema: Schema; //# sourceMappingURL=callbackConfiguration.d.ts.map