@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
14 lines (13 loc) • 441 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { BaseModelWithTenant } from './BaseModelWithTenant';
export declare class SecurityEvent extends BaseModelWithTenant implements OCPP2_0_1.SecurityEventNotificationRequest {
static readonly MODEL_NAME: string;
/**
* Fields
*/
stationId: string;
type: string;
timestamp: string;
techInfo?: string | null;
customData?: OCPP2_0_1.CustomDataType | null;
}