@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
20 lines (19 loc) • 755 B
TypeScript
import { OCPPVersionType, WebsocketServerConfig } from '@citrineos/base';
import { ChargingStation } from './ChargingStation';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class ServerNetworkProfile extends BaseModelWithTenant implements WebsocketServerConfig {
static readonly MODEL_NAME: string;
id: string;
host: string;
port: number;
pingInterval: number;
protocol: OCPPVersionType;
messageTimeout: number;
securityProfile: number;
allowUnknownChargingStations: boolean;
tlsKeyFilePath?: string;
tlsCertificateChainFilePath?: string;
mtlsCertificateAuthorityKeyFilePath?: string;
rootCACertificateFilePath?: string;
chargingStations?: ChargingStation[] | null;
}