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