@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
18 lines (17 loc) • 667 B
TypeScript
import { Model } from 'sequelize-typescript';
import { OCPP2_0_1, type TenantDto } from '@citrineos/base';
import { ChargingStation } from '../Location/index.js';
export declare class DeleteCertificateAttempt extends Model {
static readonly MODEL_NAME: string;
stationId: string;
station?: ChargingStation;
hashAlgorithm: OCPP2_0_1.HashAlgorithmEnumType;
issuerNameHash: string;
issuerKeyHash: string;
serialNumber: string;
status?: OCPP2_0_1.DeleteCertificateStatusEnumType | null;
tenantId: number;
tenant?: TenantDto;
static setDefaultTenant(instance: DeleteCertificateAttempt): void;
constructor(...args: any[]);
}