chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.runtime / ObjectPreview

ObjectPreview

data class ObjectPreview

Object containing abbreviated remote object value.

Official doc

Constructors

<init>

Object containing abbreviated remote object value.

ObjectPreview(type: String, subtype: String? = null, description: String? = null, overflow: Boolean, properties: List<PropertyPreview>, entries: List<EntryPreview>? = null)

Properties

description

String representation of the object.

val description: String?

entries

List of the entries. Specified for map and set subtype values only.

val entries: List<EntryPreview>?

overflow

True iff some of the properties or entries of the original object did not fit.

val overflow: Boolean

properties

List of the properties.

val properties: List<PropertyPreview>

subtype

Object subtype hint. Specified for object type values only.

val subtype: String?

type

Object type.

val type: String