UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

13 lines (12 loc) 456 B
import type { FetchOptions } from './types/FetchOptions.js'; export declare class CommunicatorConfiguration { private readonly apiKey; private readonly apiSecret; private readonly host; private readonly fetchOptions?; constructor(apiKey: string, apiSecret: string, host: string, fetchOptions?: FetchOptions); getApiKey(): string; getApiSecret(): string; getHost(): string; getFetchOptions(): FetchOptions | undefined; }