/// /// DecorationActivatedEvent.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 "DecorationActivatedEvent". */ @DoNotStrip @Keep data class DecorationActivatedEvent( @DoNotStrip @Keep val decoration: Decoration, @DoNotStrip @Keep val group: String, @DoNotStrip @Keep val rect: Rect?, @DoNotStrip @Keep val point: Point? ) { /* primary constructor */ companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(decoration: Decoration, group: String, rect: Rect?, point: Point?): DecorationActivatedEvent { return DecorationActivatedEvent(decoration, group, rect, point) } } }