Serializable

@Serializable
@SerialName(value = "serializable")
data class Serializable(val value: JsonObject) : JSValue

A JavaScript value serialized with JSON.stringify.

value is the JSON representation of the JavaScript value.

Constructors

Link copied to clipboard
constructor(value: JsonObject)

Properties

Link copied to clipboard

Returns true when this value is JavaScript undefined or null.

Link copied to clipboard
val value: JsonObject

Functions

Link copied to clipboard

Returns this value as a JavaScript boolean primitive.

Link copied to clipboard

Returns this value as a JavaScript boolean primitive, or null when it is not one.

Link copied to clipboard

Returns this value as a JavaScript number primitive.

Link copied to clipboard

Returns this value as a JavaScript number primitive, or null when it is not one.

Link copied to clipboard

Returns this value as a JavaScript string primitive.

Link copied to clipboard

Returns this value as a JavaScript string primitive, or null when it is not one.