kemApiV3InternalNotificationsDevicetagsGet method

Future<Response<DeviceTagsDTO>> kemApiV3InternalNotificationsDevicetagsGet({
  1. String? serialNumber,
  2. NotificationTypeDTO? notificationType,
  3. bool? includeDealerTokens,
  4. DeviceHostDTO? deviceHost,
})

Get a list of devicetags based on the given serialNumber and notificationType @param serialNumber @param notificationType Type of the notification @param includeDealerTokens @param deviceHost The cloud architecture which the device is connected to.

Implementation

Future<chopper.Response<DeviceTagsDTO>>
    kemApiV3InternalNotificationsDevicetagsGet({
  String? serialNumber,
  enums.NotificationTypeDTO? notificationType,
  bool? includeDealerTokens,
  enums.DeviceHostDTO? deviceHost,
}) {
  generatedMapping.putIfAbsent(
      DeviceTagsDTO, () => DeviceTagsDTO.fromJsonFactory);

  return _kemApiV3InternalNotificationsDevicetagsGet(
      serialNumber: serialNumber,
      notificationType: notificationType?.value?.toString(),
      includeDealerTokens: includeDealerTokens,
      deviceHost: deviceHost?.value?.toString());
}