data class RemoteObject
Mirror object referencing original JavaScript object.
<init> |
Mirror object referencing original JavaScript object. RemoteObject(type: String, subtype: String? = null, className: String? = null, value: JsonElement? = null, unserializableValue: UnserializableValue? = null, description: String? = null, objectId: RemoteObjectId? = null, preview: ObjectPreview? = null, customPreview: CustomPreview? = null) |
className |
Object class (constructor) name. Specified for val className: String? |
customPreview |
val customPreview: CustomPreview? |
description |
String representation of the object. val description: String? |
objectId |
Unique object identifier (for non-primitive values). val objectId: RemoteObjectId? |
preview |
Preview containing abbreviated property values. Specified for val preview: ObjectPreview? |
subtype |
Object subtype hint. Specified for val subtype: String? |
type |
Object type. val type: String |
unserializableValue |
Primitive value which can not be JSON-stringified does not have val unserializableValue: UnserializableValue? |
value |
Remote object value in case of primitive values or JSON values (if it was requested). val value: JsonElement? |