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

Example

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

Properties

encryptedCardData: string
store: boolean
type: "ENCRYPTED_CARD_DATA"