UNPKG

ocpp-standard-schema

Version:

Contains OCPP JSON schemas for validation purposes

11 lines (10 loc) 341 B
export declare type HashAlgorithmEnumType = 'SHA256' | 'SHA384' | 'SHA512'; export default interface DeleteCertificate { certificateHashData: CertificateHashDataType; } export interface CertificateHashDataType { hashAlgorithm: HashAlgorithmEnumType; issuerNameHash: string; issuerKeyHash: string; serialNumber: string; }