/// /// NitroPurchaseRequest.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 "NitroPurchaseRequest". */ @DoNotStrip @Keep data class NitroPurchaseRequest( @DoNotStrip @Keep val ios: NitroRequestPurchaseIos?, @DoNotStrip @Keep val android: NitroRequestPurchaseAndroid?, @DoNotStrip @Keep val apple: NitroRequestPurchaseIos?, @DoNotStrip @Keep val google: NitroRequestPurchaseAndroid? ) { private companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(ios: NitroRequestPurchaseIos?, android: NitroRequestPurchaseAndroid?, apple: NitroRequestPurchaseIos?, google: NitroRequestPurchaseAndroid?): NitroPurchaseRequest { return NitroPurchaseRequest(ios, android, apple, google) } } }