///
/// ExternalLinkLaunchModeAndroid.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

/**
 * Represents the JS union `ExternalLinkLaunchModeAndroid`, backed by a C++ enum.
 */
public typealias ExternalLinkLaunchModeAndroid = margelo.nitro.iap.ExternalLinkLaunchModeAndroid

public extension ExternalLinkLaunchModeAndroid {
  /**
   * Get a ExternalLinkLaunchModeAndroid for the given String value, or
   * return `nil` if the given value was invalid/unknown.
   */
  init?(fromString string: String) {
    switch string {
      case "unspecified":
        self = .unspecified
      case "launch-in-external-browser-or-app":
        self = .launchInExternalBrowserOrApp
      case "caller-will-launch-link":
        self = .callerWillLaunchLink
      default:
        return nil
    }
  }

  /**
   * Get the String value this ExternalLinkLaunchModeAndroid represents.
   */
  var stringValue: String {
    switch self {
      case .unspecified:
        return "unspecified"
      case .launchInExternalBrowserOrApp:
        return "launch-in-external-browser-or-app"
      case .callerWillLaunchLink:
        return "caller-will-launch-link"
    }
  }
}
