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