/// /// Metadata.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.omni import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import java.util.Objects /** * Represents the JavaScript object/struct "Metadata". */ @DoNotStrip @Keep data class Metadata( @DoNotStrip @Keep val title: String, @DoNotStrip @Keep val album: String?, @DoNotStrip @Keep val artist: String?, @DoNotStrip @Keep val imageLink: String?, @DoNotStrip @Keep val hasPrev: Boolean?, @DoNotStrip @Keep val hasNext: Boolean? ) { /* primary constructor */ override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is Metadata) return false return Objects.deepEquals(this.title, other.title) && Objects.deepEquals(this.album, other.album) && Objects.deepEquals(this.artist, other.artist) && Objects.deepEquals(this.imageLink, other.imageLink) && Objects.deepEquals(this.hasPrev, other.hasPrev) && Objects.deepEquals(this.hasNext, other.hasNext) } override fun hashCode(): Int { return arrayOf( title, album, artist, imageLink, hasPrev, hasNext ).contentDeepHashCode() } companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(title: String, album: String?, artist: String?, imageLink: String?, hasPrev: Boolean?, hasNext: Boolean?): Metadata { return Metadata(title, album, artist, imageLink, hasPrev, hasNext) } } }