/// /// ExternalLinkLaunchModeAndroid.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.iap import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "ExternalLinkLaunchModeAndroid". */ @DoNotStrip @Keep enum class ExternalLinkLaunchModeAndroid(@DoNotStrip @Keep val value: Int) { UNSPECIFIED(0), LAUNCH_IN_EXTERNAL_BROWSER_OR_APP(1), CALLER_WILL_LAUNCH_LINK(2); companion object }