///
/// BluetoothPhyOption.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 `BluetoothPhyOption`, backed by a C++ enum.
 */
public typealias BluetoothPhyOption = margelo.nitro.munimbluetooth.BluetoothPhyOption

public extension BluetoothPhyOption {
  /**
   * Get a BluetoothPhyOption for the given String value, or
   * return `nil` if the given value was invalid/unknown.
   */
  init?(fromString string: String) {
    switch string {
      case "none":
        self = .none
      case "s2":
        self = .s2
      case "s8":
        self = .s8
      default:
        return nil
    }
  }

  /**
   * Get the String value this BluetoothPhyOption represents.
   */
  var stringValue: String {
    switch self {
      case .none:
        return "none"
      case .s2:
        return "s2"
      case .s8:
        return "s8"
    }
  }
}
