/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema, stringEnum } from '../schema.js'; /** * Enum for CheckoutPaymentIntent */ export enum CheckoutPaymentIntent { Capture = 'CAPTURE', Authorize = 'AUTHORIZE', } /** * Schema for CheckoutPaymentIntent */ export const checkoutPaymentIntentSchema: Schema = stringEnum( CheckoutPaymentIntent, true );