app-starlock/lib/talk/startChart/proto/gateway_reset.pbenum.dart

34 lines
1.2 KiB
Dart

//
// Generated code. Do not modify.
// source: gateway_reset.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;
/// 状态E
class GatewayResetResp_StatusE extends $pb.ProtobufEnum {
static const GatewayResetResp_StatusE OK = GatewayResetResp_StatusE._(0, _omitEnumNames ? '' : 'OK');
static const GatewayResetResp_StatusE FAIL = GatewayResetResp_StatusE._(1, _omitEnumNames ? '' : 'FAIL');
static const $core.List<GatewayResetResp_StatusE> values = <GatewayResetResp_StatusE> [
OK,
FAIL,
];
static final $core.Map<$core.int, GatewayResetResp_StatusE> _byValue = $pb.ProtobufEnum.initByValue(values);
static GatewayResetResp_StatusE? valueOf($core.int value) => _byValue[value];
const GatewayResetResp_StatusE._($core.int v, $core.String n) : super(v, n);
}
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');