/// /// CharacteristicValue.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.munimbluetooth import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "CharacteristicValue". */ @DoNotStrip @Keep data class CharacteristicValue( @DoNotStrip @Keep val value: String, @DoNotStrip @Keep val serviceUUID: String, @DoNotStrip @Keep val characteristicUUID: String ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(value: String, serviceUUID: String, characteristicUUID: String): CharacteristicValue { return CharacteristicValue(value, serviceUUID, characteristicUUID) } } }