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