kemApiV3InternalDevicesIdMetadataGet method

Future<Response<InternalDeviceMetadataDTO>> kemApiV3InternalDevicesIdMetadataGet({
  1. required int? id,
})

Get metadata about the device, notably whether the device has been approved by its assigned dealer or whether it has been deleted @param id

Implementation

Future<chopper.Response<InternalDeviceMetadataDTO>>
    kemApiV3InternalDevicesIdMetadataGet({required int? id}) {
  generatedMapping.putIfAbsent(InternalDeviceMetadataDTO,
      () => InternalDeviceMetadataDTO.fromJsonFactory);

  return _kemApiV3InternalDevicesIdMetadataGet(id: id);
}