/// /// BLEDevice.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.co.zyke.ble import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * Represents the JavaScript object/struct "BLEDevice". */ @DoNotStrip @Keep data class BLEDevice @DoNotStrip @Keep constructor( @DoNotStrip @Keep val id: String, @DoNotStrip @Keep val name: String, @DoNotStrip @Keep val rssi: Double, @DoNotStrip @Keep val manufacturerData: ManufacturerData, @DoNotStrip @Keep val serviceUUIDs: Array, @DoNotStrip @Keep val isConnectable: Boolean, @DoNotStrip @Keep val isConnected: Boolean ) { /* main constructor */ }