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