@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
17 lines • 657 B
JavaScript
;
// Copyright Contributors to the CitrineOS Project
//
// SPDX-License-Identifier: Apache 2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.InstallRootCertificateRequest = void 0;
class InstallRootCertificateRequest {
constructor(stationId, tenantId, certificateType, callbackUrl, fileId) {
this.stationId = stationId;
this.tenantId = tenantId;
this.certificateType = certificateType;
this.callbackUrl = callbackUrl;
this.fileId = fileId;
}
}
exports.InstallRootCertificateRequest = InstallRootCertificateRequest;
//# sourceMappingURL=InstallRootCertificateRequest.js.map