You've already forked dart-core-sdk
49 lines
2.3 KiB
Dart
49 lines
2.3 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: collabShared.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// 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 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.Map<$core.int, NotifTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static NotifTypeEnum? valueOf($core.int value) => _byValue[value];
|
|
|
|
const NotifTypeEnum._($core.int v, $core.String n) : super(v, n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|