kemApiV3InternalNotificationsDevicetagsGet method
- String? serialNumber,
- NotificationTypeDTO? notificationType,
- bool? includeDealerTokens,
- 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());
}