kemApiV3InternalDevicesPost method

Future<Response> kemApiV3InternalDevicesPost({
  1. required CreateDeviceIfNotExistV3Body? body,
})

Checks if device with the given serial number exists in the database. Creates a new device if it does not exist.

Implementation

Future<chopper.Response> kemApiV3InternalDevicesPost(
    {required CreateDeviceIfNotExistV3Body? body}) {
  return _kemApiV3InternalDevicesPost(body: body);
}