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

34 lines
1.2 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Generated code. Do not modify.
// source: talk_request.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;
/// 呼叫方类型门锁、APP
class TalkReq_CallerTypeE extends $pb.ProtobufEnum {
static const TalkReq_CallerTypeE Lock = TalkReq_CallerTypeE._(0, _omitEnumNames ? '' : 'Lock');
static const TalkReq_CallerTypeE App = TalkReq_CallerTypeE._(1, _omitEnumNames ? '' : 'App');
static const $core.List<TalkReq_CallerTypeE> values = <TalkReq_CallerTypeE> [
Lock,
App,
];
static final $core.Map<$core.int, TalkReq_CallerTypeE> _byValue = $pb.ProtobufEnum.initByValue(values);
static TalkReq_CallerTypeE? valueOf($core.int value) => _byValue[value];
const TalkReq_CallerTypeE._($core.int v, $core.String n) : super(v, n);
}
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');