AccountExistsResult
Definition
export interface AccountExistsResult {
message: string;
callId: string | null;
rewards?: Rewards;
cardType?: string;
mobilePhone?: string;
alternativePhone?: string;
emailAddress?: string;
}
export enum ApplicationResultType {
Approved = 'APPROVED',
Pending = 'PENDING',
AccountExists = 'ACCOUNT_EXISTS',
Error = 'ERROR',
}
Examples
// No Rewards
accountExistsResult = {
message: 'Account found',
callId: '16e64cfe-53fa-11ea-8d77-2e728ce88125'
}
Related
Updated almost 2 years ago