/// /// HybridCameraSessionConfigSpec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.camera import androidx.annotation.Keep import com.facebook.jni.HybridData import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.HybridObject /** * A Kotlin class representing the CameraSessionConfig HybridObject. * Implement this abstract class to create Kotlin-based instances of CameraSessionConfig. */ @DoNotStrip @Keep @Suppress( "KotlinJniMissingFunction", "unused", "RedundantSuppression", "RedundantUnitReturnType", "SimpleRedundantLet", "LocalVariableName", "PropertyName", "PrivatePropertyName", "FunctionName" ) abstract class HybridCameraSessionConfigSpec: HybridObject() { // Properties @get:DoNotStrip @get:Keep abstract val selectedFPS: Double? @get:DoNotStrip @get:Keep abstract val selectedVideoStabilizationMode: TargetStabilizationMode? @get:DoNotStrip @get:Keep abstract val selectedPreviewStabilizationMode: TargetStabilizationMode? @get:DoNotStrip @get:Keep abstract val selectedVideoDynamicRange: TargetDynamicRange? @get:DoNotStrip @get:Keep abstract val isPhotoHDREnabled: Boolean @get:DoNotStrip @get:Keep abstract val nativePixelFormat: PixelFormat @get:DoNotStrip @get:Keep abstract val autoFocusSystem: AutoFocusSystem @get:DoNotStrip @get:Keep abstract val isBinned: Boolean // Methods // Default implementation of `HybridObject.toString()` override fun toString(): String { return "[HybridObject CameraSessionConfig]" } // C++ backing class @DoNotStrip @Keep protected open class CxxPart(javaPart: HybridCameraSessionConfigSpec): HybridObject.CxxPart(javaPart) { // C++ JHybridCameraSessionConfigSpec::CxxPart::initHybrid(...) external override fun initHybrid(): HybridData } override fun createCxxPart(): CxxPart { return CxxPart(this) } companion object { protected const val TAG = "HybridCameraSessionConfigSpec" } }