Verestro Paytool Client SDK
    Preparing search index...

    Interface EncryptedCardData

    Raw encrypted card payload (PAN, expiry, holder name, CVC) optionally marked for storage.

    const card: EncryptedCardData = {
    type: 'ENCRYPTED_CARD_DATA',
    store: true,
    encryptedCardData: 'eyJhbGci1iJSU1EtT0FFUC0yNTYiLCJlbmMiOiJBMjU2R1...'
    };
    interface EncryptedCardData {
        encryptedCardData: string;
        store: boolean;
        type: "ENCRYPTED_CARD_DATA";
    }
    Index

    Properties

    encryptedCardData: string
    store: boolean
    type: "ENCRYPTED_CARD_DATA"