34 lines
1.2 KiB
Dart
34 lines
1.2 KiB
Dart
|
|
//
|
|||
|
|
// 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');
|