You've already forked dart-core-sdk
50 lines
2.4 KiB
Dart
50 lines
2.4 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from collabShared.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 NotifTypeEnum extends $pb.ProtobufEnum {
|
|
static const NotifTypeEnum NOTIF_TYPE_UNKNOWN = NotifTypeEnum._(0, _omitEnumNames ? '' : 'NOTIF_TYPE_UNKNOWN');
|
|
static const NotifTypeEnum NOTIF_TYPE_COMMENT = NotifTypeEnum._(1, _omitEnumNames ? '' : 'NOTIF_TYPE_COMMENT');
|
|
static const NotifTypeEnum NOTIF_TYPE_STATUS = NotifTypeEnum._(2, _omitEnumNames ? '' : 'NOTIF_TYPE_STATUS');
|
|
static const NotifTypeEnum NOTIF_TYPE_ATTACHMENT_ADDED = NotifTypeEnum._(3, _omitEnumNames ? '' : 'NOTIF_TYPE_ATTACHMENT_ADDED');
|
|
static const NotifTypeEnum NOTIF_TYPE_ATTACHMENT_DELETED = NotifTypeEnum._(4, _omitEnumNames ? '' : 'NOTIF_TYPE_ATTACHMENT_DELETED');
|
|
static const NotifTypeEnum NOTIF_TYPE_CREATION = NotifTypeEnum._(5, _omitEnumNames ? '' : 'NOTIF_TYPE_CREATION');
|
|
static const NotifTypeEnum NOTIF_TYPE_DELETION = NotifTypeEnum._(6, _omitEnumNames ? '' : 'NOTIF_TYPE_DELETION');
|
|
static const NotifTypeEnum NOTIF_TYPE_CONTACT = NotifTypeEnum._(7, _omitEnumNames ? '' : 'NOTIF_TYPE_CONTACT');
|
|
static const NotifTypeEnum NOTIF_TYPE_UPDATE = NotifTypeEnum._(8, _omitEnumNames ? '' : 'NOTIF_TYPE_UPDATE');
|
|
static const NotifTypeEnum NOTIF_TYPE_COMPLETION = NotifTypeEnum._(9, _omitEnumNames ? '' : 'NOTIF_TYPE_COMPLETION');
|
|
|
|
static const $core.List<NotifTypeEnum> values = <NotifTypeEnum> [
|
|
NOTIF_TYPE_UNKNOWN,
|
|
NOTIF_TYPE_COMMENT,
|
|
NOTIF_TYPE_STATUS,
|
|
NOTIF_TYPE_ATTACHMENT_ADDED,
|
|
NOTIF_TYPE_ATTACHMENT_DELETED,
|
|
NOTIF_TYPE_CREATION,
|
|
NOTIF_TYPE_DELETION,
|
|
NOTIF_TYPE_CONTACT,
|
|
NOTIF_TYPE_UPDATE,
|
|
NOTIF_TYPE_COMPLETION,
|
|
];
|
|
|
|
static final $core.List<NotifTypeEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 9);
|
|
static NotifTypeEnum? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
|
|
const NotifTypeEnum._(super.value, super.name);
|
|
}
|
|
|
|
|
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|