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.

9 lines (8 loc) 373 B
import { IUsersClient } from '../interfaces'; import { FinancialEntity, UserDetail } from '../models'; import Client from './Client'; export default class UsersClient extends Client implements IUsersClient { private processResponse; get(id: string | number): Promise<UserDetail>; getFinancialEntities(isBankAggregation?: boolean): Promise<FinancialEntity[]>; }