PrivatePropertyDescriptor

@Serializable
data class PrivatePropertyDescriptor(val name: String, val value: RemoteObject? = null, val get: RemoteObject? = null, val set: RemoteObject? = null)(source)

Object private field descriptor.

Official doc

Constructors

Link copied to clipboard
constructor(name: String, value: RemoteObject? = null, get: RemoteObject? = null, set: RemoteObject? = null)

Properties

Link copied to clipboard
val get: RemoteObject? = null

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

Link copied to clipboard

Private property name.

Link copied to clipboard
val set: RemoteObject? = null

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

Link copied to clipboard
val value: RemoteObject? = null

The value associated with the private property.