/// /// Contributor.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 "Contributor". */ @DoNotStrip @Keep data class Contributor( @DoNotStrip @Keep val name: String, @DoNotStrip @Keep val sortAs: String?, @DoNotStrip @Keep val identifier: String?, @DoNotStrip @Keep val role: String?, @DoNotStrip @Keep val position: Double? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(name: String, sortAs: String?, identifier: String?, role: String?, position: Double?): Contributor { return Contributor(name, sortAs, identifier, role, position) } } }