/// /// NitroLaunchExternalLinkParamsAndroid.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 "NitroLaunchExternalLinkParamsAndroid". */ @DoNotStrip @Keep data class NitroLaunchExternalLinkParamsAndroid( @DoNotStrip @Keep val billingProgram: BillingProgramAndroid, @DoNotStrip @Keep val launchMode: ExternalLinkLaunchModeAndroid, @DoNotStrip @Keep val linkType: ExternalLinkTypeAndroid, @DoNotStrip @Keep val linkUri: String ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(billingProgram: BillingProgramAndroid, launchMode: ExternalLinkLaunchModeAndroid, linkType: ExternalLinkTypeAndroid, linkUri: String): NitroLaunchExternalLinkParamsAndroid { return NitroLaunchExternalLinkParamsAndroid(billingProgram, launchMode, linkType, linkUri) } } }