DeviceScanResult

sealed class DeviceScanResult

Represents the result of a device scan operation.

This sealed class encapsulates different types of devices that can be discovered by the SDK's scanning functionality. Currently supports Bluetooth Low Energy (BLE) and Device-to-Device (D2D) connections.

Inheritors

Types

Link copied to clipboard
data class Ble(val device: BleDevice) : DeviceScanResult

Represents a Bluetooth Low Energy (BLE) device found during scanning.

Link copied to clipboard
data class D2d(val device: D2dDevice) : DeviceScanResult

Represents a Device-to-Device (D2D) connection found during scanning.