/// /// PaymentModeIOS.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 enum/union "PaymentModeIOS". */ @DoNotStrip @Keep enum class PaymentModeIOS(@DoNotStrip @Keep val value: Int) { EMPTY(0), FREE_TRIAL(1), PAY_AS_YOU_GO(2), PAY_UP_FRONT(3); companion object }