mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
31 lines
668 B
Kotlin
31 lines
668 B
Kotlin
// Generated code. Do not modify.
|
|
|
|
package com.yandex.div.reference
|
|
|
|
import org.json.JSONArray
|
|
import org.json.JSONObject
|
|
|
|
class EntityWithoutProperties() : Hashable {
|
|
|
|
private var _hash: Int? = null
|
|
|
|
override fun hash(): Int {
|
|
_hash?.let {
|
|
return it
|
|
}
|
|
val hash = this::class.hashCode()
|
|
_hash = hash
|
|
return hash
|
|
}
|
|
|
|
fun equals(other: EntityWithoutProperties?, resolver: ExpressionResolver, otherResolver: ExpressionResolver): Boolean {
|
|
return other != null
|
|
}
|
|
|
|
fun copy() = EntityWithoutProperties()
|
|
|
|
companion object {
|
|
const val TYPE = "entity_without_properties"
|
|
}
|
|
}
|