We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
hashCode
IsMissing
1 parent aef3473 commit b841254Copy full SHA for b841254
openai-java-core/src/main/kotlin/com/openai/core/Values.kt
@@ -142,6 +142,8 @@ sealed class JsonField<out T : Any> {
142
// This filter should not be used directly and should instead use the @ExcludeMissing annotation
143
class IsMissing {
144
override fun equals(other: Any?): Boolean = other is JsonMissing
145
+
146
+ override fun hashCode(): Int = Objects.hash()
147
}
148
149
class Deserializer(private val type: JavaType? = null) :
0 commit comments