/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { BinDetails } from './binDetails.js'; import { CardAuthenticationResponse } from './cardAuthenticationResponse.js'; import { CardBrand } from './cardBrand.js'; import { CardResponseAddress } from './cardResponseAddress.js'; import { CardType } from './cardType.js'; import { CardVerificationDetails } from './cardVerificationDetails.js'; import { CardVerificationStatus } from './cardVerificationStatus.js'; import { NetworkTransactionReferenceEntity } from './networkTransactionReferenceEntity.js'; export interface SetupTokenResponseCard { /** The card holder's name as it appears on the card. */ name?: string; /** The last digits of the payment card. */ lastDigits?: string; /** The card network or brand. Applies to credit, debit, gift, and payment cards. */ brand?: CardBrand; /** The year and month, in ISO-8601 `YYYY-MM` date format. See [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6). */ expiry?: string; /** Address request details. */ billingAddress?: CardResponseAddress; /** Verification status of Card. */ verificationStatus?: CardVerificationStatus; /** Card Verification details including the authorization details and 3D SECURE details. */ verification?: CardVerificationDetails; /** Previous network transaction reference including id in response. */ networkTransactionReference?: NetworkTransactionReferenceEntity; /** Results of Authentication such as 3D Secure. */ authenticationResult?: CardAuthenticationResponse; /** Bank Identification Number (BIN) details used to fund a payment. */ binDetails?: BinDetails; /** Type of card. i.e Credit, Debit and so on. */ type?: CardType; } export declare const setupTokenResponseCardSchema: Schema; //# sourceMappingURL=setupTokenResponseCard.d.ts.map