From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

message EnumAlias {
enum Status {
option allow_alias = true;
UNKNOWN = 0;
STARTED = 1;
RUNNING = 1;
}
required Status status = 1 [default = UNKNOWN];
}