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.
17 lines (16 loc) • 431 B
TypeScript
import { ApiCore } from '../api';
import { ISetup } from 'interfaces';
export default class Client {
private _serverUrl;
private _apiCore;
private _apiKey;
private _assetsUrl;
private _headers;
constructor(config: ISetup);
get serverUrl(): string;
set serverUrl(serverUrl: string);
get apiKey(): string;
set apiKey(apiKey: string);
get apiCore(): ApiCore;
get assetsUrl(): string;
}