/// /// AdvancedCommerceInfoIOS.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 "AdvancedCommerceInfoIOS". */ @DoNotStrip @Keep data class AdvancedCommerceInfoIOS( @DoNotStrip @Keep val description: Variant_NullType_String?, @DoNotStrip @Keep val displayName: Variant_NullType_String?, @DoNotStrip @Keep val estimatedTax: Variant_NullType_String?, @DoNotStrip @Keep val items: Array, @DoNotStrip @Keep val requestReferenceId: Variant_NullType_String?, @DoNotStrip @Keep val taxCode: Variant_NullType_String?, @DoNotStrip @Keep val taxExclusivePrice: Variant_NullType_String?, @DoNotStrip @Keep val taxRate: Variant_NullType_String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(description: Variant_NullType_String?, displayName: Variant_NullType_String?, estimatedTax: Variant_NullType_String?, items: Array, requestReferenceId: Variant_NullType_String?, taxCode: Variant_NullType_String?, taxExclusivePrice: Variant_NullType_String?, taxRate: Variant_NullType_String?): AdvancedCommerceInfoIOS { return AdvancedCommerceInfoIOS(description, displayName, estimatedTax, items, requestReferenceId, taxCode, taxExclusivePrice, taxRate) } } }