@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
15 lines (14 loc) • 495 B
TypeScript
import type { TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
/**
* Represents the security information found on a particular charging station.
*/
export declare class ChargingStationSecurityInfo extends Model {
static readonly MODEL_NAME: string;
stationId: string;
publicKeyFileId: string;
tenantId: number;
tenant?: TenantDto;
static setDefaultTenant(instance: ChargingStationSecurityInfo): void;
constructor(...args: any[]);
}