/// /// CastStatus.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.omni import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "CastStatus". */ @DoNotStrip @Keep enum class CastStatus(@DoNotStrip @Keep val value: Int) { CONNECTING(0), CONNECTED(1), AVAILABLE(2), UNAVAILABLE(3), UNSUPPORTED(4); companion object }