/// /// ExternalPurchaseLinkResultIOS.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 "ExternalPurchaseLinkResultIOS". */ @DoNotStrip @Keep data class ExternalPurchaseLinkResultIOS( @DoNotStrip @Keep val error: Variant_NullType_String?, @DoNotStrip @Keep val success: Boolean ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(error: Variant_NullType_String?, success: Boolean): ExternalPurchaseLinkResultIOS { return ExternalPurchaseLinkResultIOS(error, success) } } }