UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

21 lines 900 B
"use strict"; // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.GenerateCertificateChainRequest = void 0; class GenerateCertificateChainRequest { constructor(selfSigned, organizationName, commonName, keyLength, validBefore, countryName, signatureAlgorithm, pathLen, filePath) { this.selfSigned = selfSigned; this.organizationName = organizationName; this.commonName = commonName; this.keyLength = keyLength; this.validBefore = validBefore; this.countryName = countryName; this.signatureAlgorithm = signatureAlgorithm; this.pathLen = pathLen; this.filePath = filePath; } } exports.GenerateCertificateChainRequest = GenerateCertificateChainRequest; //# sourceMappingURL=GenerateCertificateChainRequest.js.map