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

import NitroModules

/**
 * Represents an instance of `PhotoHDRConstraint`, backed by a C++ struct.
 */
public typealias PhotoHDRConstraint = margelo.nitro.camera.PhotoHDRConstraint

public extension PhotoHDRConstraint {
  private typealias bridge = margelo.nitro.camera.bridge.swift

  /**
   * Create a new instance of `PhotoHDRConstraint`.
   */
  init(photoHDR: Bool) {
    self.init(photoHDR)
  }

  @inline(__always)
  var photoHDR: Bool {
    return self.__photoHDR
  }
}
