/// /// PurchaseOfferIOS.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 /** * Represents the JavaScript object/struct "PurchaseOfferIOS". */ @DoNotStrip @Keep data class PurchaseOfferIOS( @DoNotStrip @Keep val id: String, @DoNotStrip @Keep val paymentMode: String, @DoNotStrip @Keep val type: String ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(id: String, paymentMode: String, type: String): PurchaseOfferIOS { return PurchaseOfferIOS(id, paymentMode, type) } } }