UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

68 lines (67 loc) 1.97 kB
export declare class PaymentMethodToStore { /** * Secondary brand of the card. For example: **plastix**, **hmclub**. */ "brand"?: string; /** * The card verification code. Only collect raw card data if you are [fully PCI compliant](https://docs.adyen.com/development-resources/pci-dss-compliance-guide). */ "cvc"?: string; /** * The encrypted card. */ "encryptedCard"?: string; /** * The encrypted card number. */ "encryptedCardNumber"?: string; /** * The encrypted card expiry month. */ "encryptedExpiryMonth"?: string; /** * The encrypted card expiry year. */ "encryptedExpiryYear"?: string; /** * The encrypted card verification code. */ "encryptedSecurityCode"?: string; /** * The card expiry month. Only collect raw card data if you are [fully PCI compliant](https://docs.adyen.com/development-resources/pci-dss-compliance-guide). */ "expiryMonth"?: string; /** * The card expiry year. Only collect raw card data if you are [fully PCI compliant](https://docs.adyen.com/development-resources/pci-dss-compliance-guide). */ "expiryYear"?: string; /** * The name of the card holder. */ "holderName"?: string; /** * The card number. Only collect raw card data if you are [fully PCI compliant](https://docs.adyen.com/development-resources/pci-dss-compliance-guide). */ "number"?: string; /** * Set to **scheme**. */ "type"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }