ObjectPreview

@Serializable
data class ObjectPreview(val type: String, val subtype: String? = null, val description: String? = null, val overflow: Boolean, val properties: List<Runtime.PropertyPreview>, val entries: List<Runtime.EntryPreview>? = null)

Object containing abbreviated remote object value.

Constructors

Link copied to clipboard
constructor(type: String, subtype: String? = null, description: String? = null, overflow: Boolean, properties: List<Runtime.PropertyPreview>, entries: List<Runtime.EntryPreview>? = null)

Properties

Link copied to clipboard
val description: String? = null

String representation of the object.

Link copied to clipboard

List of the entries. Specified for map and set subtype values only.

Link copied to clipboard

True iff some of the properties or entries of the original object did not fit.

Link copied to clipboard

List of the properties.

Link copied to clipboard
val subtype: String? = null

Object subtype hint. Specified for object type values only.

Link copied to clipboard

Object type.