UNPKG

open-banking-pfm-sdk

Version:

The Open Banking PFM SDK uses Client classes and with **Promises** to get responses from the Open Banking PFM API in an easier way and structured as data models.

13 lines (12 loc) 321 B
import IBankConsent from './IBankConsent'; export default interface IConsentDetail { consentId: string; originBankName: string; customerIdentification: string | null; cpf: string | null; bank: IBankConsent; deadline: number; status: string; isSynchronized: boolean; purpose: string; }