/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, optional, Schema } from '../schema.js'; import { OrdersCardVerificationMethod, ordersCardVerificationMethodSchema, } from './ordersCardVerificationMethod.js'; /** The API caller can opt in to verify the card through PayPal offered verification services (e.g. Smart Dollar Auth, 3DS). */ export interface CardVerification { /** The method used for card verification. */ method?: OrdersCardVerificationMethod; } export const cardVerificationSchema: Schema = object({ method: ['method', optional(ordersCardVerificationMethodSchema)], });