2021-07-07 22:24:26 +08:00
|
|
|
///
|
|
|
|
// Generated code. Do not modify.
|
|
|
|
// source: event.proto
|
|
|
|
//
|
|
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
|
|
|
|
|
|
|
|
// ignore_for_file: UNDEFINED_SHOWN_NAME
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
|
|
|
|
class UserEvent extends $pb.ProtobufEnum {
|
2021-07-11 15:33:19 +08:00
|
|
|
static const UserEvent GetStatus = UserEvent._(0, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'GetStatus');
|
2021-07-07 22:24:26 +08:00
|
|
|
static const UserEvent SignIn = UserEvent._(1, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'SignIn');
|
|
|
|
static const UserEvent SignUp = UserEvent._(2, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'SignUp');
|
|
|
|
static const UserEvent SignOut = UserEvent._(3, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'SignOut');
|
2021-07-14 21:12:52 +08:00
|
|
|
static const UserEvent UpdateUser = UserEvent._(4, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'UpdateUser');
|
2021-07-07 22:24:26 +08:00
|
|
|
|
|
|
|
static const $core.List<UserEvent> values = <UserEvent> [
|
2021-07-11 15:33:19 +08:00
|
|
|
GetStatus,
|
2021-07-07 22:24:26 +08:00
|
|
|
SignIn,
|
|
|
|
SignUp,
|
|
|
|
SignOut,
|
2021-07-14 21:12:52 +08:00
|
|
|
UpdateUser,
|
2021-07-07 22:24:26 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
static final $core.Map<$core.int, UserEvent> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
|
|
static UserEvent? valueOf($core.int value) => _byValue[value];
|
|
|
|
|
|
|
|
const UserEvent._($core.int v, $core.String n) : super(v, n);
|
|
|
|
}
|
|
|
|
|