/// /// RecordingFinishedReason.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 "RecordingFinishedReason". */ @DoNotStrip @Keep enum class RecordingFinishedReason(@DoNotStrip @Keep val value: Int) { STOPPED(0), MAX_DURATION_REACHED(1), MAX_FILE_SIZE_REACHED(2); companion object }