SerializerEntry

data class SerializerEntry<T : Any>(val key: String, val type: NativeSerializerType, val value: T)(source)

SerializerEntry is a data class that represents an entry in a serializer.

It contains the following properties:

This class is used to store serialized data in a key-value format, where the key is a string and the value can be of any type that extends Any.

Author

Fantamomo

Since

1.0-SNAPSHOT

Parameters

T

The type of the value, which must be a subclass of Any.

Constructors

Link copied to clipboard
constructor(key: String, type: NativeSerializerType, value: T)

Properties

Link copied to clipboard
val key: String

The key of the entry, represented as a string.

Link copied to clipboard

The type of the entry, represented by NativeSerializerType.

Link copied to clipboard
val value: T

The value of the entry, which is of type T.