VariantPathStep

sealed interface VariantPathStep

One step of a VariantPath: into an object field, or into an array element.

Inheritors

Types

Link copied to clipboard
data class Field(val name: String) : VariantPathStep

Into the field called name.

Link copied to clipboard
data class Index(val index: Int) : VariantPathStep

Into the element at index.