// // Generated code. Do not modify. // source: options.proto // // @dart = 3.3 // ignore_for_file: annotate_overrides, camel_case_types, comment_references // ignore_for_file: constant_identifier_names, library_prefixes // ignore_for_file: non_constant_identifier_names, prefer_final_fields // ignore_for_file: unnecessary_import, unnecessary_this, unused_import import 'dart:core' as $core; import 'package:protobuf/protobuf.dart' as $pb; class KPIGroupType extends $pb.ProtobufEnum { static const KPIGroupType KPIGROUP_TYPE_UNKNOWN = KPIGroupType._(0, _omitEnumNames ? '' : 'KPIGROUP_TYPE_UNKNOWN'); static const KPIGroupType KPIGROUP_TYPE_SINK = KPIGroupType._(1, _omitEnumNames ? '' : 'KPIGROUP_TYPE_SINK'); static const KPIGroupType KPIGROUP_TYPE_MATERIALIZED = KPIGroupType._(2, _omitEnumNames ? '' : 'KPIGROUP_TYPE_MATERIALIZED'); static const KPIGroupType KPIGROUP_TYPE_VIEW = KPIGroupType._(3, _omitEnumNames ? '' : 'KPIGROUP_TYPE_VIEW'); static const $core.List values = [ KPIGROUP_TYPE_UNKNOWN, KPIGROUP_TYPE_SINK, KPIGROUP_TYPE_MATERIALIZED, KPIGROUP_TYPE_VIEW, ]; static final $core.List _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3); static KPIGroupType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value]; const KPIGroupType._(super.v, super.n); } const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');