pl.wendigo.chrome.api.runtime / GetPropertiesRequest

GetPropertiesRequest

data class GetPropertiesRequest (source)

Represents request frame that can be used with Runtime#getProperties operation call.

Returns properties of a given object. Object group of the result is inherited from the target object.

Link
Runtime#getProperties method documentation.

See Also

RuntimeOperations.getProperties

Constructors

<init>

GetPropertiesRequest(objectId: RemoteObjectId, ownProperties: Boolean? = null, accessorPropertiesOnly: Boolean? = null, generatePreview: Boolean? = null)

Represents request frame that can be used with Runtime#getProperties operation call.

Properties

accessorPropertiesOnly

val accessorPropertiesOnly: Boolean?

If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.

generatePreview

val generatePreview: Boolean?

Whether preview should be generated for the results.

objectId

val objectId: RemoteObjectId

Identifier of the object to return properties for.

ownProperties

val ownProperties: Boolean?

If true, returns properties belonging only to the element itself, not to its prototype chain.