Files
dart-core-sdk/lib/user-groups.pbenum.dart
2025-05-20 08:54:50 +00:00

33 lines
1.2 KiB
Dart

//
// Generated code. Do not modify.
// source: user-groups.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 EntityRefType extends $pb.ProtobufEnum {
static const EntityRefType REF_TYPE_UNKNOWN = EntityRefType._(0, _omitEnumNames ? '' : 'REF_TYPE_UNKNOWN');
static const EntityRefType REF_TYPE_PARTNER = EntityRefType._(1, _omitEnumNames ? '' : 'REF_TYPE_PARTNER');
static const $core.List<EntityRefType> values = <EntityRefType> [
REF_TYPE_UNKNOWN,
REF_TYPE_PARTNER,
];
static final $core.List<EntityRefType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
static EntityRefType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const EntityRefType._(super.v, super.n);
}
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');