@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
12 lines (11 loc) • 452 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class InstalledCertificate extends Model implements OCPP2_0_1.CertificateHashDataType {
static readonly MODEL_NAME: string;
stationId: string;
hashAlgorithm: OCPP2_0_1.HashAlgorithmEnumType;
issuerNameHash: string;
issuerKeyHash: string;
serialNumber: string;
certificateType: OCPP2_0_1.GetCertificateIdUseEnumType;
}