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