/// /// ArtboardBy.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.rive import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript object/struct "ArtboardBy". */ @DoNotStrip @Keep data class ArtboardBy( @DoNotStrip @Keep val type: ArtboardByTypes, @DoNotStrip @Keep val index: Double?, @DoNotStrip @Keep val name: String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(type: ArtboardByTypes, index: Double?, name: String?): ArtboardBy { return ArtboardBy(type, index, name) } } }