You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
4 months ago
|
//
|
||
|
// Generated code. Do not modify.
|
||
|
// source: message.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 MsgType extends $pb.ProtobufEnum {
|
||
|
static const MsgType SINGLE_TEXT = MsgType._(0, _omitEnumNames ? '' : 'SINGLE_TEXT');
|
||
|
static const MsgType SINGLE_AUDIO = MsgType._(1, _omitEnumNames ? '' : 'SINGLE_AUDIO');
|
||
|
static const MsgType GROUP_TEXT = MsgType._(2, _omitEnumNames ? '' : 'GROUP_TEXT');
|
||
|
static const MsgType GROUP_AUDIO = MsgType._(3, _omitEnumNames ? '' : 'GROUP_AUDIO');
|
||
|
|
||
|
static const $core.List<MsgType> values = <MsgType> [
|
||
|
SINGLE_TEXT,
|
||
|
SINGLE_AUDIO,
|
||
|
GROUP_TEXT,
|
||
|
GROUP_AUDIO,
|
||
|
];
|
||
|
|
||
|
static final $core.Map<$core.int, MsgType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||
|
static MsgType? valueOf($core.int value) => _byValue[value];
|
||
|
|
||
|
const MsgType._($core.int v, $core.String n) : super(v, n);
|
||
|
}
|
||
|
|
||
|
|
||
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|