/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ExperienceContextShippingPreference } from './experienceContextShippingPreference.js'; import { VaultInstructionAction } from './vaultInstructionAction.js'; import { VaultUserAction } from './vaultUserAction.js'; /** A resource representing an experience context of vault a venmo account. */ export interface VenmoExperienceContext { /** The label that overrides the business name in the PayPal account on the PayPal site. The pattern is defined by an external party and supports Unicode. */ brandName?: string; /** The shipping preference. This only applies to PayPal payment source. */ shippingPreference?: ExperienceContextShippingPreference; /** DEPRECATED. Vault Instruction on action to be performed after a successful payer approval. */ vaultInstruction?: VaultInstructionAction; /** User Action on action to be performed after a successful payer approval. */ userAction?: VaultUserAction; } export declare const venmoExperienceContextSchema: Schema; //# sourceMappingURL=venmoExperienceContext.d.ts.map