pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 456 B
TypeScript
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;
}