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

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

  /**
   * Get the String value this TargetPhotoContainerFormat represents.
   */
  var stringValue: String {
    switch self {
      case .jpeg:
        return "jpeg"
      case .heic:
        return "heic"
      case .dng:
        return "dng"
      case .native:
        return "native"
    }
  }
}
