/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema, stringEnum } from '../schema.js'; /** * Enum for PaypalExperienceLandingPage */ export enum PaypalExperienceLandingPage { Login = 'LOGIN', GuestCheckout = 'GUEST_CHECKOUT', NoPreference = 'NO_PREFERENCE', Billing = 'BILLING', } /** * Schema for PaypalExperienceLandingPage */ export const paypalExperienceLandingPageSchema: Schema = stringEnum( PaypalExperienceLandingPage, true );