CallArgument

@Serializable
data class CallArgument(val value: JsonElement? = null, val unserializableValue: String? = null, val objectId: String? = null)

Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified.

Constructors

Link copied to clipboard
constructor(value: JsonElement? = null, unserializableValue: String? = null, objectId: String? = null)

Properties

Link copied to clipboard
val objectId: String? = null

Remote object handle.

Link copied to clipboard

Primitive value which can not be JSON-stringified.

Link copied to clipboard
val value: JsonElement? = null

Primitive value or serializable javascript object.