/// /// NitroVerifyPurchaseWithIapkitProps.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 import com.margelo.nitro.core.NullType /** * Represents the JavaScript object/struct "NitroVerifyPurchaseWithIapkitProps". */ @DoNotStrip @Keep data class NitroVerifyPurchaseWithIapkitProps( @DoNotStrip @Keep val apiKey: Variant_NullType_String?, @DoNotStrip @Keep val apple: Variant_NullType_NitroVerifyPurchaseWithIapkitAppleProps?, @DoNotStrip @Keep val google: Variant_NullType_NitroVerifyPurchaseWithIapkitGoogleProps? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(apiKey: Variant_NullType_String?, apple: Variant_NullType_NitroVerifyPurchaseWithIapkitAppleProps?, google: Variant_NullType_NitroVerifyPurchaseWithIapkitGoogleProps?): NitroVerifyPurchaseWithIapkitProps { return NitroVerifyPurchaseWithIapkitProps(apiKey, apple, google) } } }