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

public extension PhotoContainerFormat {
  /**
   * Get a PhotoContainerFormat 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 "jpeg":
        self = .jpeg
      case "heic":
        self = .heic
      case "dng":
        self = .dng
      case "tiff":
        self = .tiff
      case "dcm":
        self = .dcm
      default:
        return nil
    }
  }

  /**
   * Get the String value this PhotoContainerFormat represents.
   */
  var stringValue: String {
    switch self {
      case .unknown:
        return "unknown"
      case .jpeg:
        return "jpeg"
      case .heic:
        return "heic"
      case .dng:
        return "dng"
      case .tiff:
        return "tiff"
      case .dcm:
        return "dcm"
    }
  }
}
