@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
12 lines (11 loc) • 482 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class InstalledCertificate extends BaseModelWithTenant 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;
}