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

GetPropertiesResponse

data class GetPropertiesResponse

Response type for the RuntimeDomain.getProperties command.

Constructors

<init>

Response type for the RuntimeDomain.getProperties command.

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

Properties

exceptionDetails

Exception details.

val exceptionDetails: ExceptionDetails?

internalProperties

Internal object properties (only of the element itself).

val internalProperties: List<InternalPropertyDescriptor>?

privateProperties

Object private properties.

val privateProperties: List<PrivatePropertyDescriptor>?

result

Object properties.

val result: List<PropertyDescriptor>