/// // Generated code. Do not modify. // source: interpreter.proto // // @dart = 2.3 // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type // ignore_for_file: UNDEFINED_SHOWN_NAME,UNUSED_SHOWN_NAME import 'dart:core' as $core show int, dynamic, String, List, Map; import 'package:protobuf/protobuf.dart' as $pb; class InterpreterOrderState extends $pb.ProtobufEnum { static const InterpreterOrderState Distributeing = InterpreterOrderState._(1, 'Distributeing'); static const InterpreterOrderState Underway = InterpreterOrderState._(2, 'Underway'); static const InterpreterOrderState Rescinded = InterpreterOrderState._(3, 'Rescinded'); static const InterpreterOrderState Completed = InterpreterOrderState._(4, 'Completed'); static const $core.List values = [ Distributeing, Underway, Rescinded, Completed, ]; static final $core.Map<$core.int, InterpreterOrderState> _byValue = $pb.ProtobufEnum.initByValue(values); static InterpreterOrderState valueOf($core.int value) => _byValue[value]; const InterpreterOrderState._($core.int v, $core.String n) : super(v, n); }