Arrays
Schema
Section titled “Schema”struct Sample { options: [bool; 5] @1,}Languages
Section titled “Languages”struct Sample { options: [bool; 5],}type Sample struct { Options [5]bool}data class Sample( val options: Array<Boolean>,)class Sample { options: boolean[];
constructor(options: boolean[]) { this.options = options; }}@dataclassclass Sample: options: list[bool]