You've already forked dart-core-sdk
33 lines
1.1 KiB
Dart
33 lines
1.1 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.Map<$core.int, EntityRefType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static EntityRefType? valueOf($core.int value) => _byValue[value];
|
|
|
|
const EntityRefType._(super.v, super.n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|