/// /// IapkitPurchaseState.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.iap import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "IapkitPurchaseState". */ @DoNotStrip @Keep enum class IapkitPurchaseState(@DoNotStrip @Keep val value: Int) { PENDING(0), UNKNOWN(1), ENTITLED(2), PENDING_ACKNOWLEDGMENT(3), CANCELED(4), EXPIRED(5), READY_TO_CONSUME(6), CONSUMED(7), INAUTHENTIC(8); }