/// /// HybridLunarDatePickerSpec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.lunardatepicker import androidx.annotation.Keep import com.facebook.jni.HybridData import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * A Kotlin class representing the LunarDatePicker HybridObject. * Implement this abstract class to create Kotlin-based instances of LunarDatePicker. */ @DoNotStrip @Keep @Suppress( "KotlinJniMissingFunction", "unused", "RedundantSuppression", "RedundantUnitReturnType", "SimpleRedundantLet", "LocalVariableName", "PropertyName", "PrivatePropertyName", "FunctionName" ) abstract class HybridLunarDatePickerSpec: HybridObject() { @DoNotStrip private var mHybridData: HybridData = initHybrid() init { super.updateNative(mHybridData) } override fun updateNative(hybridData: HybridData) { mHybridData = hybridData super.updateNative(hybridData) } // Properties // Methods abstract fun present(params: LDP_PresentParams): Unit @DoNotStrip @Keep private fun present_cxx(params: LDP_PresentParams): Unit { val __result = present(params) return __result } @DoNotStrip @Keep abstract fun configure(config: LDP_ConfigParams): Unit @DoNotStrip @Keep abstract fun updatePrices(params: LDP_PriceUpdateParams): Unit private external fun initHybrid(): HybridData companion object { private const val TAG = "HybridLunarDatePickerSpec" } }