/** * Ribbit CONNECT completion data model */ export interface Ribbit { customerToken: string accountToken: string institutionName: string accountMask: string success: boolean /** If the institution requires tokenized account numbers (manual debit verify) */ isTAN?: boolean /** Optional guide for locating bank account info for a specific bank */ helpLink?: string /** Ribbit bank identifier from CONNECT completion */ bankId?: number | string }