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

PropertyPreview

data class PropertyPreview

Constructors

<init>

PropertyPreview(name: String, type: String, value: String? = null, valuePreview: ObjectPreview? = null, subtype: String? = null)

Properties

name

Property name.

val name: String

subtype

Object subtype hint. Specified for object type values only.

val subtype: String?

type

Object type. Accessor means that the property itself is an accessor property.

val type: String

value

User-friendly property value string.

val value: String?

valuePreview

Nested value preview.

val valuePreview: ObjectPreview?