pl.wendigo.chrome.api.runtime / GetPropertiesResponse

GetPropertiesResponse

data class GetPropertiesResponse (source)

Represents response frame that is returned from 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>

GetPropertiesResponse(result: List<PropertyDescriptor>, internalProperties: List<InternalPropertyDescriptor>? = null, privateProperties: List<PrivatePropertyDescriptor>? = null, exceptionDetails: ExceptionDetails? = null)

Represents response frame that is returned from Runtime#getProperties operation call. Returns properties of a given object. Object group of the result is inherited from the target object.

Properties

exceptionDetails

val exceptionDetails: ExceptionDetails?

Exception details.

internalProperties

val internalProperties: List<InternalPropertyDescriptor>?

Internal object properties (only of the element itself).

privateProperties

val privateProperties: List<PrivatePropertyDescriptor>?

Object private properties.

result

val result: List<PropertyDescriptor>

Object properties.