/// /// Link.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.reactnativereadium import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "Link". */ @DoNotStrip @Keep data class Link( @DoNotStrip @Keep val href: String, @DoNotStrip @Keep val title: String?, @DoNotStrip @Keep val rels: Array?, @DoNotStrip @Keep val languages: Array?, @DoNotStrip @Keep val depth: Double?, @DoNotStrip @Keep val hasChildren: Boolean?, @DoNotStrip @Keep val parentHref: String?, @DoNotStrip @Keep val position: Double? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(href: String, title: String?, rels: Array?, languages: Array?, depth: Double?, hasChildren: Boolean?, parentHref: String?, position: Double?): Link { return Link(href, title, rels, languages, depth, hasChildren, parentHref, position) } } }