UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

22 lines 839 B
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache-2.0 import { OCPP2_0_1 } from '@citrineos/base'; export class InstallRootCertificateRequest { // Fields for InstallCertificate message request stationId; certificateType; tenantId; callbackUrl; // The file id of the root CA certificate. If not provided, it uses one from the external CA Server // according to the certificate type, e.g., lets encrypt, hubject. fileId; constructor(stationId, tenantId, certificateType, callbackUrl, fileId) { this.stationId = stationId; this.tenantId = tenantId; this.certificateType = certificateType; this.callbackUrl = callbackUrl; this.fileId = fileId; } } //# sourceMappingURL=InstallRootCertificateRequest.js.map