-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.pb.dart
More file actions
104 lines (83 loc) · 3.91 KB
/
api.pb.dart
File metadata and controls
104 lines (83 loc) · 3.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// This is a generated file - do not edit.
//
// Generated from api/api.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_relative_imports
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
export 'location.pb.dart';
export 'schedule.pb.dart';
export 'session.pb.dart';
export 'settings.pb.dart';
export 'stats.pb.dart';
export 'team_member.pb.dart';
export 'user.pb.dart';
class GetHealthRequest extends $pb.GeneratedMessage {
factory GetHealthRequest() => create();
GetHealthRequest._();
factory GetHealthRequest.fromBuffer($core.List<$core.int> data,
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(data, registry);
factory GetHealthRequest.fromJson($core.String json,
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
_omitMessageNames ? '' : 'GetHealthRequest',
package: const $pb.PackageName(_omitMessageNames ? '' : 'tk.api'),
createEmptyInstance: create)
..hasRequiredFields = false;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetHealthRequest clone() => deepCopy();
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetHealthRequest copyWith(void Function(GetHealthRequest) updates) =>
super.copyWith((message) => updates(message as GetHealthRequest))
as GetHealthRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetHealthRequest create() => GetHealthRequest._();
@$core.override
GetHealthRequest createEmptyInstance() => create();
@$core.pragma('dart2js:noInline')
static GetHealthRequest getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<GetHealthRequest>(create);
static GetHealthRequest? _defaultInstance;
}
class GetHealthResponse extends $pb.GeneratedMessage {
factory GetHealthResponse() => create();
GetHealthResponse._();
factory GetHealthResponse.fromBuffer($core.List<$core.int> data,
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(data, registry);
factory GetHealthResponse.fromJson($core.String json,
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
_omitMessageNames ? '' : 'GetHealthResponse',
package: const $pb.PackageName(_omitMessageNames ? '' : 'tk.api'),
createEmptyInstance: create)
..hasRequiredFields = false;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetHealthResponse clone() => deepCopy();
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetHealthResponse copyWith(void Function(GetHealthResponse) updates) =>
super.copyWith((message) => updates(message as GetHealthResponse))
as GetHealthResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetHealthResponse create() => GetHealthResponse._();
@$core.override
GetHealthResponse createEmptyInstance() => create();
@$core.pragma('dart2js:noInline')
static GetHealthResponse getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<GetHealthResponse>(create);
static GetHealthResponse? _defaultInstance;
}
const $core.bool _omitMessageNames =
$core.bool.fromEnvironment('protobuf.omit_message_names');