Object property descriptor.
name: stringProperty name or symbol description.
value: RemoteObject | undefinedThe value associated with the property.
writable: boolean | undefinedTrue if the value associated with the property may be changed (data descriptors only).
get: RemoteObject | undefinedA function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only).
set: RemoteObject | undefinedA function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only).
configurable: booleanTrue if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
enumerable: booleanTrue if this property shows up during enumeration of the properties on the corresponding object.
wasThrown: boolean | undefinedTrue if the result was thrown during the evaluation.
isOwn: boolean | undefinedTrue if the property is owned for the object.
symbol: RemoteObject | undefinedProperty symbol object, if the property is of the symbol type.