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.

10 lines (9 loc) 249 B
import IUser from '../interfaces/IUser'; export default class User implements IUser { private _userId; private _cpf; constructor({ userId, cpf }: IUser); get userId(): number | string; get cpf(): string; toObject(): IUser; }