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