rebootDevices abstract method
Sends a reboot command to the specified devices.
Implementation
@Get()
Future<Response<AlifResponse<Map<String, dynamic>>>> rebootDevices({
/// A comma-separated list of IDs of the devices to be rebooted
@Query() required String ids,
/// Authentication token of a currently logged-in user (active session)
@Query() required String token,
/// The AIM API version this request is designed for
@Query('v') int version = 7,
/// The remote procedure to call. Do not edit this
@Query() String method = 'reboot_devices',
});