/// /// DecorationStyle.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 "DecorationStyle". */ @DoNotStrip @Keep data class DecorationStyle( @DoNotStrip @Keep val type: String, @DoNotStrip @Keep val tint: String?, @DoNotStrip @Keep val isActive: Boolean?, @DoNotStrip @Keep val id: String?, @DoNotStrip @Keep val html: String?, @DoNotStrip @Keep val css: String?, @DoNotStrip @Keep val layout: String?, @DoNotStrip @Keep val width: String? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(type: String, tint: String?, isActive: Boolean?, id: String?, html: String?, css: String?, layout: String?, width: String?): DecorationStyle { return DecorationStyle(type, tint, isActive, id, html, css, layout, width) } } }