/// /// InterruptionReason.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.camera import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "InterruptionReason". */ @DoNotStrip @Keep enum class InterruptionReason(@DoNotStrip @Keep val value: Int) { UNKNOWN(0), VIDEO_DEVICE_NOT_AVAILABLE_IN_BACKGROUND(1), AUDIO_DEVICE_IN_USE_BY_ANOTHER_CLIENT(2), VIDEO_DEVICE_IN_USE_BY_ANOTHER_CLIENT(3), VIDEO_DEVICE_NOT_AVAILABLE_WITH_MULTIPLE_FOREGROUND_APPS(4), VIDEO_DEVICE_NOT_AVAILABLE_DUE_TO_SYSTEM_PRESSURE(5), SENSITIVE_CONTENT_MITIGATION_ACTIVATED(6); companion object }