// This is a generated file - do not edit. // // Generated from slotbooking.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 AppointmentType extends $pb.ProtobufEnum { static const AppointmentType APPOINTMENT_TYPE_UNKNOWN = AppointmentType._(0, _omitEnumNames ? '' : 'APPOINTMENT_TYPE_UNKNOWN'); static const AppointmentType APPOINTMENT_TYPE_LOADING = AppointmentType._(1, _omitEnumNames ? '' : 'APPOINTMENT_TYPE_LOADING'); static const AppointmentType APPOINTMENT_TYPE_UNLOADING = AppointmentType._(2, _omitEnumNames ? '' : 'APPOINTMENT_TYPE_UNLOADING'); static const AppointmentType APPOINTMENT_TYPE_UNDEFINED = AppointmentType._(3, _omitEnumNames ? '' : 'APPOINTMENT_TYPE_UNDEFINED'); static const AppointmentType APPOINTMENT_TYPE_BOTH = AppointmentType._(4, _omitEnumNames ? '' : 'APPOINTMENT_TYPE_BOTH'); static const $core.List values = [ APPOINTMENT_TYPE_UNKNOWN, APPOINTMENT_TYPE_LOADING, APPOINTMENT_TYPE_UNLOADING, APPOINTMENT_TYPE_UNDEFINED, APPOINTMENT_TYPE_BOTH, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4); static AppointmentType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const AppointmentType._(super.value, super.name); } class CapacityRuleScope extends $pb.ProtobufEnum { static const CapacityRuleScope CAPACITY_RULE_SCOPE_UNKNOWN = CapacityRuleScope._(0, _omitEnumNames ? '' : 'CAPACITY_RULE_SCOPE_UNKNOWN'); static const CapacityRuleScope CAPACITY_RULE_SCOPE_SIMULTANEOUS = CapacityRuleScope._(1, _omitEnumNames ? '' : 'CAPACITY_RULE_SCOPE_SIMULTANEOUS'); static const CapacityRuleScope CAPACITY_RULE_SCOPE_DAILY = CapacityRuleScope._(2, _omitEnumNames ? '' : 'CAPACITY_RULE_SCOPE_DAILY'); static const $core.List values = [ CAPACITY_RULE_SCOPE_UNKNOWN, CAPACITY_RULE_SCOPE_SIMULTANEOUS, CAPACITY_RULE_SCOPE_DAILY, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2); static CapacityRuleScope? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const CapacityRuleScope._(super.value, super.name); } class CommandIdentifierEntry extends $pb.ProtobufEnum { static const CommandIdentifierEntry CommandIdentifierEntry_MandatoryExceptForAllowedUsers = CommandIdentifierEntry._(0, _omitEnumNames ? '' : 'CommandIdentifierEntry_MandatoryExceptForAllowedUsers'); static const CommandIdentifierEntry CommandIdentifierEntry_NoRef = CommandIdentifierEntry._(1, _omitEnumNames ? '' : 'CommandIdentifierEntry_NoRef'); static const $core.List values = [ CommandIdentifierEntry_MandatoryExceptForAllowedUsers, CommandIdentifierEntry_NoRef, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1); static CommandIdentifierEntry? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const CommandIdentifierEntry._(super.value, super.name); } class SegmentationConstraintType extends $pb.ProtobufEnum { static const SegmentationConstraintType SEGMENTATION_CONSTRAINT_TYPE_UNKNOWN = SegmentationConstraintType._(0, _omitEnumNames ? '' : 'SEGMENTATION_CONSTRAINT_TYPE_UNKNOWN'); static const SegmentationConstraintType SEGMENTATION_CONSTRAINT_TYPE_USER_CHOICE = SegmentationConstraintType._(1, _omitEnumNames ? '' : 'SEGMENTATION_CONSTRAINT_TYPE_USER_CHOICE'); static const SegmentationConstraintType SEGMENTATION_CONSTRAINT_TYPE_ORDER_ATTRIBUTE = SegmentationConstraintType._(2, _omitEnumNames ? '' : 'SEGMENTATION_CONSTRAINT_TYPE_ORDER_ATTRIBUTE'); static const $core.List values = [ SEGMENTATION_CONSTRAINT_TYPE_UNKNOWN, SEGMENTATION_CONSTRAINT_TYPE_USER_CHOICE, SEGMENTATION_CONSTRAINT_TYPE_ORDER_ATTRIBUTE, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2); static SegmentationConstraintType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const SegmentationConstraintType._(super.value, super.name); } const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');