UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

14 lines (13 loc) 660 B
import { CountryNameEnumType, SignatureAlgorithmEnumType } from '../../layers/sequelize'; export declare class GenerateCertificateChainRequest { selfSigned: boolean; organizationName: string; commonName: string; keyLength?: number; validBefore?: string; countryName?: CountryNameEnumType; signatureAlgorithm?: SignatureAlgorithmEnumType; pathLen?: number; filePath?: string; constructor(selfSigned: boolean, organizationName: string, commonName: string, keyLength?: number, validBefore?: string, countryName?: CountryNameEnumType, signatureAlgorithm?: SignatureAlgorithmEnumType, pathLen?: number, filePath?: string); }