/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { lazy, object, optional, Schema } from '../schema.js'; import { VaultResponse, vaultResponseSchema } from './vaultResponse.js'; /** Additional attributes associated with the use of Apple Pay. */ export interface ApplePayAttributesResponse { /** The details about a saved payment source. */ vault?: VaultResponse; } export const applePayAttributesResponseSchema: Schema = lazy( () => object({ vault: ['vault', optional(vaultResponseSchema)] }) );