import { IVehicleConfiguration } from "./vehicle_configuration"; /** WiFi parameters entity. */ export interface IWiFiHotspot extends IVehicleConfiguration { /** Gets or sets the WiFi password. */ password: string; /** Gets or sets the WiFi SSID. */ ssid: string; } //# sourceMappingURL=wi_fi_hotspot.d.ts.map