/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CallbackConfiguration } from './callbackConfiguration.js'; import { VenmoWalletExperienceContextShippingPreference } from './venmoWalletExperienceContextShippingPreference.js'; import { VenmoWalletExperienceContextUserAction } from './venmoWalletExperienceContextUserAction.js'; /** Customizes the buyer experience during the approval process for payment with Venmo. Note: Partners and Marketplaces might configure shipping_preference during partner account setup, which overrides the request values. */ export interface VenmoWalletExperienceContext { /** The business name of the merchant. The pattern is defined by an external party and supports Unicode. */ brandName?: string; /** The location from which the shipping address is derived. */ shippingPreference?: VenmoWalletExperienceContextShippingPreference; /** CallBack Configuration that the merchant can provide to PayPal/Venmo. */ orderUpdateCallbackConfig?: CallbackConfiguration; /** Configures a Continue or Pay Now checkout flow. */ userAction?: VenmoWalletExperienceContextUserAction; } export declare const venmoWalletExperienceContextSchema: Schema; //# sourceMappingURL=venmoWalletExperienceContext.d.ts.map