You've already forked dart-core-sdk
48 lines
3.1 KiB
Dart
48 lines
3.1 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from siteBooking.proto.
|
|
|
|
// @dart = 3.3
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
class AppointmentStatusInputEvent extends $pb.ProtobufEnum {
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNKNOWN = AppointmentStatusInputEvent._(0, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNKNOWN');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED = AppointmentStatusInputEvent._(1, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED = AppointmentStatusInputEvent._(2, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED = AppointmentStatusInputEvent._(3, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR = AppointmentStatusInputEvent._(4, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_LOADING_STARTED = AppointmentStatusInputEvent._(5, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_LOADING_STARTED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED = AppointmentStatusInputEvent._(6, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED = AppointmentStatusInputEvent._(7, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED');
|
|
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED = AppointmentStatusInputEvent._(8, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED');
|
|
|
|
static const $core.List<AppointmentStatusInputEvent> values = <AppointmentStatusInputEvent> [
|
|
APPOINTMENT_INPUT_EVENT_UNKNOWN,
|
|
APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED,
|
|
APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED,
|
|
APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED,
|
|
APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR,
|
|
APPOINTMENT_INPUT_EVENT_LOADING_STARTED,
|
|
APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED,
|
|
APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED,
|
|
APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED,
|
|
];
|
|
|
|
static final $core.List<AppointmentStatusInputEvent?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 8);
|
|
static AppointmentStatusInputEvent? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
|
|
const AppointmentStatusInputEvent._(super.value, super.name);
|
|
}
|
|
|
|
|
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|