/** * Defines whether certificate needs to be installed or updated. * */ export declare type CertificateActionEnumType = 'Install' | 'Update'; export default interface Get15118EVCertificateRequest { customData?: CustomDataType; /** * Schema version currently used for the 15118 session between EV and Charging Station. Needed for parsing of the EXI stream by the CSMS. * * */ iso15118SchemaVersion: string; action: CertificateActionEnumType; /** * Raw CertificateInstallationReq request from EV, Base64 encoded. * */ exiRequest: string; } /** * This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data. */ export interface CustomDataType { vendorId: string; [k: string]: unknown; }