/// /// NitroVerifyPurchaseWithIapkitProps.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 object/struct "NitroVerifyPurchaseWithIapkitProps". */ @DoNotStrip @Keep data class NitroVerifyPurchaseWithIapkitProps( @DoNotStrip @Keep val apiKey: String?, @DoNotStrip @Keep val apple: NitroVerifyPurchaseWithIapkitAppleProps?, @DoNotStrip @Keep val google: NitroVerifyPurchaseWithIapkitGoogleProps? ) { private companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(apiKey: String?, apple: NitroVerifyPurchaseWithIapkitAppleProps?, google: NitroVerifyPurchaseWithIapkitGoogleProps?): NitroVerifyPurchaseWithIapkitProps { return NitroVerifyPurchaseWithIapkitProps(apiKey, apple, google) } } }