ocpp-standard-schema
Version:
Contains OCPP JSON schemas for validation purposes
13 lines (12 loc) • 527 B
TypeScript
export declare type HashAlgorithmEnumType = 'SHA256' | 'SHA384' | 'SHA512';
export declare type GetInstalledCertificateStatusEnumType = 'Accepted' | 'NotFound';
export default interface GetInstalledCertificateIdsResponse {
certificateHashData?: [CertificateHashDataType, ...CertificateHashDataType[]];
status: GetInstalledCertificateStatusEnumType;
}
export interface CertificateHashDataType {
hashAlgorithm: HashAlgorithmEnumType;
issuerNameHash: string;
issuerKeyHash: string;
serialNumber: string;
}