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

PrivatePropertyDescriptor

data class PrivatePropertyDescriptor

Object private field descriptor.

Constructors

<init>

Object private field descriptor.

PrivatePropertyDescriptor(name: String, value: RemoteObject? = null, get: RemoteObject? = null, set: RemoteObject? = null)

Properties

get

A function which serves as a getter for the private property, or undefined if there is no getter (accessor descriptors only).

val get: RemoteObject?

name

Private property name.

val name: String

set

A function which serves as a setter for the private property, or undefined if there is no setter (accessor descriptors only).

val set: RemoteObject?

value

The value associated with the private property.

val value: RemoteObject?