CallArgument

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

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

Official doc

Constructors

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

Properties

Link copied to clipboard

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.