OldBodyField

@Serializable
internal data class OldBodyField(val keys: List<String>, val type: String, val parents: List<String> = emptyList())

Represents a field in the old body.

Constructors

Link copied to clipboard
constructor(keys: List<String>, type: String, parents: List<String> = emptyList())

Properties

Link copied to clipboard

The keys of the field. There should be at least one key.

Link copied to clipboard

The parent keys of the field. It will be empty if it's a root field.

Link copied to clipboard

The type of the field. It could be one on these Kotlin primitive types.
Allowed types:
- String
- Int
- Double
- Boolean