@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
10 lines (9 loc) • 405 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
export declare class InstallRootCertificateRequest {
stationId: string;
certificateType: OCPP2_0_1.InstallCertificateUseEnumType;
tenantId: number;
callbackUrl?: string;
fileId?: string;
constructor(stationId: string, tenantId: number, certificateType: OCPP2_0_1.InstallCertificateUseEnumType, callbackUrl?: string, fileId?: string);
}