/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, Schema, string } from '../schema.js'; /** Customizes the payer experience during the approval process for the payment. */ export interface ApplePayExperienceContext { /** Describes the URL. */ returnUrl: string; /** Describes the URL. */ cancelUrl: string; } export const applePayExperienceContextSchema: Schema = object( { returnUrl: ['return_url', string()], cancelUrl: ['cancel_url', string()] } );