/// /// WinBackOfferInputIOS.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 "WinBackOfferInputIOS". */ @DoNotStrip @Keep data class WinBackOfferInputIOS( @DoNotStrip @Keep val offerId: String ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(offerId: String): WinBackOfferInputIOS { return WinBackOfferInputIOS(offerId) } } }