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

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

  /**
   * Create a new instance of `VideoDynamicRangeConstraint`.
   */
  init(videoDynamicRange: TargetDynamicRange) {
    self.init(videoDynamicRange)
  }

  @inline(__always)
  var videoDynamicRange: TargetDynamicRange {
    return self.__videoDynamicRange
  }
}
