/// /// BiometryStatus.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.sensitiveinfo import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "BiometryStatus". */ @DoNotStrip @Keep enum class BiometryStatus(@DoNotStrip @Keep val value: Int) { AVAILABLE(0), NOTENROLLED(1), NOTAVAILABLE(2), LOCKEDOUT(3), UNKNOWN(4); companion object }