ObjectDefinition

@Serializable
data class ObjectDefinition(val type: String, val kind: Int, val name: String? = null, val required: Boolean? = false, val comment: String? = null, val properties: List<PropertyDefinition>? = null, val interfaces: List<GenericDefinition>? = null) : IGenericDefinition, WithComment

Represents an object definition in a Wrap ABI.

Constructors

Link copied to clipboard
constructor(type: String, kind: Int, name: String? = null, required: Boolean? = false, comment: String? = null, properties: List<PropertyDefinition>? = null, interfaces: List<GenericDefinition>? = null)

Properties

Link copied to clipboard
open override val comment: String? = null

Optional comment about the object definition.

Link copied to clipboard

List of interfaces that define the interfaces implemented by the object.

Link copied to clipboard
open override val kind: Int

Kind of the definition.

Link copied to clipboard
open override val name: String? = null

Optional name of the object definition.

Link copied to clipboard

List of PropertyDefinitions that define the properties of the object.

Link copied to clipboard
open override val required: Boolean? = false

Boolean indicating whether the object definition is required or not.

Link copied to clipboard
open override val type: String

Type of the object definition.