/// /// Decoration.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 "Decoration". */ @DoNotStrip @Keep data class Decoration( @DoNotStrip @Keep val id: String, @DoNotStrip @Keep val locator: Locator, @DoNotStrip @Keep val style: DecorationStyle, @DoNotStrip @Keep val extras: Map? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(id: String, locator: Locator, style: DecorationStyle, extras: Map?): Decoration { return Decoration(id, locator, style, extras) } } }