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

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

  /**
   * Get the String value this StatusBarStyle represents.
   */
  var stringValue: String {
    switch self {
      case .default:
        return "default"
      case .lightcontent:
        return "lightContent"
      case .darkcontent:
        return "darkContent"
    }
  }
}
