/// /// PAM_ConfigParams.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.progressandmodal import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "PAM_ConfigParams". */ @DoNotStrip @Keep data class PAM_ConfigParams( @DoNotStrip @Keep val indicatorColor: String?, @DoNotStrip @Keep val backgroundAlpha: Double? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(indicatorColor: String?, backgroundAlpha: Double?): PAM_ConfigParams { return PAM_ConfigParams(indicatorColor, backgroundAlpha) } } }