Skip to main content

SubmitResult

type SubmitResult = 
| {
card?: CardInfo & object;
vault_form_token: string;
}
| {
error?: string;
};

Submit result from the SecureFields SDK

Type Declaration

{
card?: CardInfo & object;
vault_form_token: string;
}

card?

optional card: CardInfo & object;

Additional card informations linked to the token

Type Declaration

NameType
fingerprint?string

See

CardInfo

vault_form_token

vault_form_token: string;

The token representing the card details

{
error?: string;
}

error?

optional error: string;

Potential error message if tokenization failed