version property

  1. @JsonKey.new(name: "version")
VersionConfig? version
getter/setter pair

It controls the version on which this config can run. When sharing config files, this prevents accidental execution on unwanted client versions. During execution, the client will check if its current version meets this requirement. Support of v25.8.3+.

Implementation

@JsonKey(name: "version")
VersionConfig? version;