Hibok
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

31 righe
1.2 KiB

  1. ///
  2. // Generated code. Do not modify.
  3. // source: interpreter.proto
  4. //
  5. // @dart = 2.3
  6. // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type
  7. // ignore_for_file: UNDEFINED_SHOWN_NAME,UNUSED_SHOWN_NAME
  8. import 'dart:core' as $core show int, dynamic, String, List, Map;
  9. import 'package:protobuf/protobuf.dart' as $pb;
  10. class InterpreterOrderState extends $pb.ProtobufEnum {
  11. static const InterpreterOrderState Distributeing = InterpreterOrderState._(1, 'Distributeing');
  12. static const InterpreterOrderState Underway = InterpreterOrderState._(2, 'Underway');
  13. static const InterpreterOrderState Rescinded = InterpreterOrderState._(3, 'Rescinded');
  14. static const InterpreterOrderState Completed = InterpreterOrderState._(4, 'Completed');
  15. static const $core.List<InterpreterOrderState> values = <InterpreterOrderState> [
  16. Distributeing,
  17. Underway,
  18. Rescinded,
  19. Completed,
  20. ];
  21. static final $core.Map<$core.int, InterpreterOrderState> _byValue = $pb.ProtobufEnum.initByValue(values);
  22. static InterpreterOrderState valueOf($core.int value) => _byValue[value];
  23. const InterpreterOrderState._($core.int v, $core.String n) : super(v, n);
  24. }