/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CardCustomer } from './cardCustomer.js'; import { CardVerification } from './cardVerification.js'; import { VaultInstructionBase } from './vaultInstructionBase.js'; /** Additional attributes associated with the use of this card. */ export interface SubscriptionsCardAttributes { /** The details about a customer in PayPal's system of record. */ customer?: CardCustomer; /** Basic vault instruction specification that can be extended by specific payment sources that supports vaulting. */ vault?: VaultInstructionBase; /** The API caller can opt in to verify the card through PayPal offered verification services (e.g. Smart Dollar Auth, 3DS). */ verification?: CardVerification; } export declare const subscriptionsCardAttributesSchema: Schema; //# sourceMappingURL=subscriptionsCardAttributes.d.ts.map