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

25 lines 570 B
export class CommunicatorConfiguration { apiKey; apiSecret; host; fetchOptions; constructor(apiKey, apiSecret, host, fetchOptions) { this.apiKey = apiKey; this.apiSecret = apiSecret; this.host = host; this.fetchOptions = fetchOptions; } getApiKey() { return this.apiKey; } getApiSecret() { return this.apiSecret; } getHost() { return this.host; } getFetchOptions() { return this.fetchOptions; } } //# sourceMappingURL=CommunicatorConfiguration.js.map