GetPropertiesParameter

@Serializable
data class GetPropertiesParameter(val objectId: String, val ownProperties: Boolean? = null, val accessorPropertiesOnly: Boolean? = null, val generatePreview: Boolean? = null, val nonIndexedPropertiesOnly: Boolean? = null)

Constructors

Link copied to clipboard
constructor(objectId: String, ownProperties: Boolean? = null, accessorPropertiesOnly: Boolean? = null, generatePreview: Boolean? = null, nonIndexedPropertiesOnly: Boolean? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard

Whether preview should be generated for the results.

Link copied to clipboard

If true, returns non-indexed properties only.

Link copied to clipboard

Identifier of the object to return properties for.

Link copied to clipboard
val ownProperties: Boolean? = null

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