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

/**
 * Represents the JS enum `AuthorizationRequestStatus`, backed by a C++ enum.
 */
public typealias AuthorizationRequestStatus = margelo.nitro.healthkit.AuthorizationRequestStatus

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

  /**
   * Get the String value this AuthorizationRequestStatus represents.
   */
  var stringValue: String {
    switch self {
      case .unknown:
        return "unknown"
      case .shouldrequest:
        return "shouldRequest"
      case .unnecessary:
        return "unnecessary"
    }
  }
}
