quilt-hp-python 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- quilt_hp/__init__.py +22 -0
- quilt_hp/_paths.py +26 -0
- quilt_hp/_proto/__init__.py +0 -0
- quilt_hp/_proto/quilt_device_pairing_pb2.py +56 -0
- quilt_hp/_proto/quilt_device_pairing_pb2.pyi +317 -0
- quilt_hp/_proto/quilt_device_pairing_pb2_grpc.py +24 -0
- quilt_hp/_proto/quilt_hds_pb2.py +292 -0
- quilt_hp/_proto/quilt_hds_pb2.pyi +3947 -0
- quilt_hp/_proto/quilt_hds_pb2_grpc.py +1732 -0
- quilt_hp/_proto/quilt_notifier_pb2.py +55 -0
- quilt_hp/_proto/quilt_notifier_pb2.pyi +258 -0
- quilt_hp/_proto/quilt_notifier_pb2_grpc.py +97 -0
- quilt_hp/_proto/quilt_services_pb2.py +171 -0
- quilt_hp/_proto/quilt_services_pb2.pyi +1320 -0
- quilt_hp/_proto/quilt_services_pb2_grpc.py +1188 -0
- quilt_hp/_proto/quilt_system_pb2.py +53 -0
- quilt_hp/_proto/quilt_system_pb2.pyi +164 -0
- quilt_hp/_proto/quilt_system_pb2_grpc.py +270 -0
- quilt_hp/auth.py +244 -0
- quilt_hp/cli/__init__.py +1 -0
- quilt_hp/cli/main.py +770 -0
- quilt_hp/cli/settings.py +123 -0
- quilt_hp/cli/store.py +105 -0
- quilt_hp/cli/tui.py +2677 -0
- quilt_hp/client.py +616 -0
- quilt_hp/const.py +57 -0
- quilt_hp/exceptions.py +23 -0
- quilt_hp/models/__init__.py +85 -0
- quilt_hp/models/comfort.py +47 -0
- quilt_hp/models/controller.py +135 -0
- quilt_hp/models/energy.py +31 -0
- quilt_hp/models/enums.py +298 -0
- quilt_hp/models/indoor_unit.py +412 -0
- quilt_hp/models/outdoor_unit.py +71 -0
- quilt_hp/models/qsm.py +105 -0
- quilt_hp/models/schedule.py +98 -0
- quilt_hp/models/sensor.py +92 -0
- quilt_hp/models/software_update.py +74 -0
- quilt_hp/models/space.py +177 -0
- quilt_hp/models/system.py +451 -0
- quilt_hp/py.typed +1 -0
- quilt_hp/services/__init__.py +1 -0
- quilt_hp/services/hds.py +480 -0
- quilt_hp/services/streaming.py +561 -0
- quilt_hp/services/system.py +95 -0
- quilt_hp/services/user.py +143 -0
- quilt_hp/tokens.py +119 -0
- quilt_hp/transport.py +192 -0
- quilt_hp_python-0.1.1.dist-info/METADATA +172 -0
- quilt_hp_python-0.1.1.dist-info/RECORD +53 -0
- quilt_hp_python-0.1.1.dist-info/WHEEL +4 -0
- quilt_hp_python-0.1.1.dist-info/entry_points.txt +2 -0
- quilt_hp_python-0.1.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,1320 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
quilt_services.proto
|
|
5
|
+
Reconstructed gRPC app-service definitions from Quilt app v1.0.25.
|
|
6
|
+
|
|
7
|
+
Authoritative sources used here:
|
|
8
|
+
- Android APK smali for service/method names, package paths, and many field numbers
|
|
9
|
+
- iOS KMP source for semantic model names and iOS-only methods absent from the APK
|
|
10
|
+
- Live captures for user/partner/system-information traffic
|
|
11
|
+
|
|
12
|
+
NOTE: SystemService lives in package core.protos.system and has been moved to
|
|
13
|
+
quilt_system.proto to match the Android wire path.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from collections import abc as _abc
|
|
17
|
+
from google.protobuf import descriptor as _descriptor
|
|
18
|
+
from google.protobuf import field_mask_pb2 as _field_mask_pb2
|
|
19
|
+
from google.protobuf import message as _message
|
|
20
|
+
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
21
|
+
from google.protobuf.internal import containers as _containers
|
|
22
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
23
|
+
import builtins as _builtins
|
|
24
|
+
import sys
|
|
25
|
+
import typing as _typing
|
|
26
|
+
|
|
27
|
+
if sys.version_info >= (3, 11):
|
|
28
|
+
from typing import TypeAlias as _TypeAlias, Never as _Never
|
|
29
|
+
else:
|
|
30
|
+
from typing_extensions import TypeAlias as _TypeAlias, Never as _Never
|
|
31
|
+
|
|
32
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
33
|
+
|
|
34
|
+
class _AccessRoleToSystem:
|
|
35
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
36
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
37
|
+
|
|
38
|
+
class _AccessRoleToSystemEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_AccessRoleToSystem.ValueType], _builtins.type):
|
|
39
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
40
|
+
ACCESS_ROLE_TO_SYSTEM_UNKNOWN: _AccessRoleToSystem.ValueType # 0
|
|
41
|
+
ACCESS_ROLE_TO_SYSTEM_ADMIN: _AccessRoleToSystem.ValueType # 1
|
|
42
|
+
ACCESS_ROLE_TO_SYSTEM_MEMBER: _AccessRoleToSystem.ValueType # 2
|
|
43
|
+
|
|
44
|
+
class AccessRoleToSystem(_AccessRoleToSystem, metaclass=_AccessRoleToSystemEnumTypeWrapper):
|
|
45
|
+
"""---------------------------------------------------------------------------
|
|
46
|
+
Common enums / models
|
|
47
|
+
---------------------------------------------------------------------------
|
|
48
|
+
|
|
49
|
+
Android enum LuH1.
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
ACCESS_ROLE_TO_SYSTEM_UNKNOWN: AccessRoleToSystem.ValueType # 0
|
|
53
|
+
ACCESS_ROLE_TO_SYSTEM_ADMIN: AccessRoleToSystem.ValueType # 1
|
|
54
|
+
ACCESS_ROLE_TO_SYSTEM_MEMBER: AccessRoleToSystem.ValueType # 2
|
|
55
|
+
Global___AccessRoleToSystem: _TypeAlias = AccessRoleToSystem # noqa: Y015
|
|
56
|
+
|
|
57
|
+
class _DeclaredUserType:
|
|
58
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
59
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
60
|
+
|
|
61
|
+
class _DeclaredUserTypeEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_DeclaredUserType.ValueType], _builtins.type):
|
|
62
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
63
|
+
DECLARED_USER_TYPE_UNSPECIFIED: _DeclaredUserType.ValueType # 0
|
|
64
|
+
DECLARED_USER_TYPE_HOMEOWNER: _DeclaredUserType.ValueType # 1
|
|
65
|
+
DECLARED_USER_TYPE_PARTNER: _DeclaredUserType.ValueType # 2
|
|
66
|
+
|
|
67
|
+
class DeclaredUserType(_DeclaredUserType, metaclass=_DeclaredUserTypeEnumTypeWrapper):
|
|
68
|
+
"""KMP-only/UserAttributes model. Not found in the current Android APK, but used
|
|
69
|
+
by iOS source and confirmed via live captures.
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
DECLARED_USER_TYPE_UNSPECIFIED: DeclaredUserType.ValueType # 0
|
|
73
|
+
DECLARED_USER_TYPE_HOMEOWNER: DeclaredUserType.ValueType # 1
|
|
74
|
+
DECLARED_USER_TYPE_PARTNER: DeclaredUserType.ValueType # 2
|
|
75
|
+
Global___DeclaredUserType: _TypeAlias = DeclaredUserType # noqa: Y015
|
|
76
|
+
|
|
77
|
+
class _GeocodeSource:
|
|
78
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
79
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
80
|
+
|
|
81
|
+
class _GeocodeSourceEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_GeocodeSource.ValueType], _builtins.type):
|
|
82
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
83
|
+
GEOCODE_SOURCE_UNSPECIFIED: _GeocodeSource.ValueType # 0
|
|
84
|
+
GEOCODE_SOURCE_GOOGLE_PLACES: _GeocodeSource.ValueType # 1
|
|
85
|
+
|
|
86
|
+
class GeocodeSource(_GeocodeSource, metaclass=_GeocodeSourceEnumTypeWrapper):
|
|
87
|
+
"""---------------------------------------------------------------------------
|
|
88
|
+
System Information Service (GRPCSystemInformationClientService)
|
|
89
|
+
---------------------------------------------------------------------------
|
|
90
|
+
|
|
91
|
+
Address is only referenced by iOS KMP methods/models (ListSystems/SetAddress).
|
|
92
|
+
The current Android APK only confirms SystemInformation fields 1-3.
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
GEOCODE_SOURCE_UNSPECIFIED: GeocodeSource.ValueType # 0
|
|
96
|
+
GEOCODE_SOURCE_GOOGLE_PLACES: GeocodeSource.ValueType # 1
|
|
97
|
+
Global___GeocodeSource: _TypeAlias = GeocodeSource # noqa: Y015
|
|
98
|
+
|
|
99
|
+
class _TimeResolution:
|
|
100
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
101
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
102
|
+
|
|
103
|
+
class _TimeResolutionEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_TimeResolution.ValueType], _builtins.type):
|
|
104
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
105
|
+
TIME_RESOLUTION_UNSPECIFIED: _TimeResolution.ValueType # 0
|
|
106
|
+
TIME_RESOLUTION_HOURLY: _TimeResolution.ValueType # 1
|
|
107
|
+
|
|
108
|
+
class TimeResolution(_TimeResolution, metaclass=_TimeResolutionEnumTypeWrapper): ...
|
|
109
|
+
|
|
110
|
+
TIME_RESOLUTION_UNSPECIFIED: TimeResolution.ValueType # 0
|
|
111
|
+
TIME_RESOLUTION_HOURLY: TimeResolution.ValueType # 1
|
|
112
|
+
Global___TimeResolution: _TypeAlias = TimeResolution # noqa: Y015
|
|
113
|
+
|
|
114
|
+
class _MetricBucketStatus:
|
|
115
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
116
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
117
|
+
|
|
118
|
+
class _MetricBucketStatusEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_MetricBucketStatus.ValueType], _builtins.type):
|
|
119
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
120
|
+
METRIC_BUCKET_STATUS_UNSPECIFIED: _MetricBucketStatus.ValueType # 0
|
|
121
|
+
METRIC_BUCKET_STATUS_COMPLETE: _MetricBucketStatus.ValueType # 1
|
|
122
|
+
METRIC_BUCKET_STATUS_INCOMPLETE: _MetricBucketStatus.ValueType # 2
|
|
123
|
+
|
|
124
|
+
class MetricBucketStatus(_MetricBucketStatus, metaclass=_MetricBucketStatusEnumTypeWrapper): ...
|
|
125
|
+
|
|
126
|
+
METRIC_BUCKET_STATUS_UNSPECIFIED: MetricBucketStatus.ValueType # 0
|
|
127
|
+
METRIC_BUCKET_STATUS_COMPLETE: MetricBucketStatus.ValueType # 1
|
|
128
|
+
METRIC_BUCKET_STATUS_INCOMPLETE: MetricBucketStatus.ValueType # 2
|
|
129
|
+
Global___MetricBucketStatus: _TypeAlias = MetricBucketStatus # noqa: Y015
|
|
130
|
+
|
|
131
|
+
class _AfterInviteBehavior:
|
|
132
|
+
ValueType = _typing.NewType("ValueType", _builtins.int)
|
|
133
|
+
V: _TypeAlias = ValueType # noqa: Y015
|
|
134
|
+
|
|
135
|
+
class _AfterInviteBehaviorEnumTypeWrapper(_enum_type_wrapper._EnumTypeWrapper[_AfterInviteBehavior.ValueType], _builtins.type):
|
|
136
|
+
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
137
|
+
AFTER_INVITE_BEHAVIOR_UNSPECIFIED: _AfterInviteBehavior.ValueType # 0
|
|
138
|
+
AFTER_INVITE_BEHAVIOR_NONE: _AfterInviteBehavior.ValueType # 1
|
|
139
|
+
AFTER_INVITE_BEHAVIOR_REMOVE_INSTALLER: _AfterInviteBehavior.ValueType # 2
|
|
140
|
+
|
|
141
|
+
class AfterInviteBehavior(_AfterInviteBehavior, metaclass=_AfterInviteBehaviorEnumTypeWrapper):
|
|
142
|
+
"""---------------------------------------------------------------------------
|
|
143
|
+
Partner Service (GRPCPartnerClientService)
|
|
144
|
+
iOS/KMP + live-capture only; absent from the current Android APK.
|
|
145
|
+
---------------------------------------------------------------------------
|
|
146
|
+
"""
|
|
147
|
+
|
|
148
|
+
AFTER_INVITE_BEHAVIOR_UNSPECIFIED: AfterInviteBehavior.ValueType # 0
|
|
149
|
+
AFTER_INVITE_BEHAVIOR_NONE: AfterInviteBehavior.ValueType # 1
|
|
150
|
+
AFTER_INVITE_BEHAVIOR_REMOVE_INSTALLER: AfterInviteBehavior.ValueType # 2
|
|
151
|
+
Global___AfterInviteBehavior: _TypeAlias = AfterInviteBehavior # noqa: Y015
|
|
152
|
+
|
|
153
|
+
@_typing.final
|
|
154
|
+
class User(_message.Message):
|
|
155
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
156
|
+
|
|
157
|
+
QUILT_USER_ID_FIELD_NUMBER: _builtins.int
|
|
158
|
+
FIRST_NAME_FIELD_NUMBER: _builtins.int
|
|
159
|
+
LAST_NAME_FIELD_NUMBER: _builtins.int
|
|
160
|
+
EMAIL_FIELD_NUMBER: _builtins.int
|
|
161
|
+
PHONE_NUMBER_FIELD_NUMBER: _builtins.int
|
|
162
|
+
quilt_user_id: _builtins.str
|
|
163
|
+
first_name: _builtins.str
|
|
164
|
+
last_name: _builtins.str
|
|
165
|
+
email: _builtins.str
|
|
166
|
+
phone_number: _builtins.str
|
|
167
|
+
def __init__(
|
|
168
|
+
self,
|
|
169
|
+
*,
|
|
170
|
+
quilt_user_id: _builtins.str = ...,
|
|
171
|
+
first_name: _builtins.str = ...,
|
|
172
|
+
last_name: _builtins.str = ...,
|
|
173
|
+
email: _builtins.str = ...,
|
|
174
|
+
phone_number: _builtins.str = ...,
|
|
175
|
+
) -> None: ...
|
|
176
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
177
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
178
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["email", b"email", "first_name", b"first_name", "last_name", b"last_name", "phone_number", b"phone_number", "quilt_user_id", b"quilt_user_id"] # noqa: Y015
|
|
179
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
180
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
181
|
+
|
|
182
|
+
Global___User: _TypeAlias = User # noqa: Y015
|
|
183
|
+
|
|
184
|
+
@_typing.final
|
|
185
|
+
class UserAttributes(_message.Message):
|
|
186
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
187
|
+
|
|
188
|
+
DECLARED_USER_TYPE_FIELD_NUMBER: _builtins.int
|
|
189
|
+
declared_user_type: Global___DeclaredUserType.ValueType
|
|
190
|
+
def __init__(
|
|
191
|
+
self,
|
|
192
|
+
*,
|
|
193
|
+
declared_user_type: Global___DeclaredUserType.ValueType = ...,
|
|
194
|
+
) -> None: ...
|
|
195
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
196
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
197
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["declared_user_type", b"declared_user_type"] # noqa: Y015
|
|
198
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
199
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
200
|
+
|
|
201
|
+
Global___UserAttributes: _TypeAlias = UserAttributes # noqa: Y015
|
|
202
|
+
|
|
203
|
+
@_typing.final
|
|
204
|
+
class GetLoggedInUserRequest(_message.Message):
|
|
205
|
+
"""---------------------------------------------------------------------------
|
|
206
|
+
User Service (GRPCUserClientService)
|
|
207
|
+
---------------------------------------------------------------------------
|
|
208
|
+
"""
|
|
209
|
+
|
|
210
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
211
|
+
|
|
212
|
+
def __init__(
|
|
213
|
+
self,
|
|
214
|
+
) -> None: ...
|
|
215
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
216
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
217
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
218
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
219
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
220
|
+
|
|
221
|
+
Global___GetLoggedInUserRequest: _TypeAlias = GetLoggedInUserRequest # noqa: Y015
|
|
222
|
+
|
|
223
|
+
@_typing.final
|
|
224
|
+
class GetLoggedInUserResponse(_message.Message):
|
|
225
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
226
|
+
|
|
227
|
+
USER_FIELD_NUMBER: _builtins.int
|
|
228
|
+
@_builtins.property
|
|
229
|
+
def user(self) -> Global___User: ...
|
|
230
|
+
def __init__(
|
|
231
|
+
self,
|
|
232
|
+
*,
|
|
233
|
+
user: Global___User | None = ...,
|
|
234
|
+
) -> None: ...
|
|
235
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["user", b"user"] # noqa: Y015
|
|
236
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
237
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["user", b"user"] # noqa: Y015
|
|
238
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
239
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
240
|
+
|
|
241
|
+
Global___GetLoggedInUserResponse: _TypeAlias = GetLoggedInUserResponse # noqa: Y015
|
|
242
|
+
|
|
243
|
+
@_typing.final
|
|
244
|
+
class UpdateLoggedInUserRequest(_message.Message):
|
|
245
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
246
|
+
|
|
247
|
+
FIRST_NAME_FIELD_NUMBER: _builtins.int
|
|
248
|
+
LAST_NAME_FIELD_NUMBER: _builtins.int
|
|
249
|
+
PHONE_NUMBER_FIELD_NUMBER: _builtins.int
|
|
250
|
+
first_name: _builtins.str
|
|
251
|
+
last_name: _builtins.str
|
|
252
|
+
phone_number: _builtins.str
|
|
253
|
+
def __init__(
|
|
254
|
+
self,
|
|
255
|
+
*,
|
|
256
|
+
first_name: _builtins.str = ...,
|
|
257
|
+
last_name: _builtins.str = ...,
|
|
258
|
+
phone_number: _builtins.str = ...,
|
|
259
|
+
) -> None: ...
|
|
260
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
261
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
262
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["first_name", b"first_name", "last_name", b"last_name", "phone_number", b"phone_number"] # noqa: Y015
|
|
263
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
264
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
265
|
+
|
|
266
|
+
Global___UpdateLoggedInUserRequest: _TypeAlias = UpdateLoggedInUserRequest # noqa: Y015
|
|
267
|
+
|
|
268
|
+
@_typing.final
|
|
269
|
+
class UpdateLoggedInUserResponse(_message.Message):
|
|
270
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
271
|
+
|
|
272
|
+
USER_FIELD_NUMBER: _builtins.int
|
|
273
|
+
@_builtins.property
|
|
274
|
+
def user(self) -> Global___User: ...
|
|
275
|
+
def __init__(
|
|
276
|
+
self,
|
|
277
|
+
*,
|
|
278
|
+
user: Global___User | None = ...,
|
|
279
|
+
) -> None: ...
|
|
280
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["user", b"user"] # noqa: Y015
|
|
281
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
282
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["user", b"user"] # noqa: Y015
|
|
283
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
284
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
285
|
+
|
|
286
|
+
Global___UpdateLoggedInUserResponse: _TypeAlias = UpdateLoggedInUserResponse # noqa: Y015
|
|
287
|
+
|
|
288
|
+
@_typing.final
|
|
289
|
+
class GetUserAttributesRequest(_message.Message):
|
|
290
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
291
|
+
|
|
292
|
+
def __init__(
|
|
293
|
+
self,
|
|
294
|
+
) -> None: ...
|
|
295
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
296
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
297
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
298
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
299
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
300
|
+
|
|
301
|
+
Global___GetUserAttributesRequest: _TypeAlias = GetUserAttributesRequest # noqa: Y015
|
|
302
|
+
|
|
303
|
+
@_typing.final
|
|
304
|
+
class PatchUserAttributesRequest(_message.Message):
|
|
305
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
306
|
+
|
|
307
|
+
USER_ATTRIBUTES_FIELD_NUMBER: _builtins.int
|
|
308
|
+
@_builtins.property
|
|
309
|
+
def user_attributes(self) -> Global___UserAttributes: ...
|
|
310
|
+
def __init__(
|
|
311
|
+
self,
|
|
312
|
+
*,
|
|
313
|
+
user_attributes: Global___UserAttributes | None = ...,
|
|
314
|
+
) -> None: ...
|
|
315
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["user_attributes", b"user_attributes"] # noqa: Y015
|
|
316
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
317
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["user_attributes", b"user_attributes"] # noqa: Y015
|
|
318
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
319
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
320
|
+
|
|
321
|
+
Global___PatchUserAttributesRequest: _TypeAlias = PatchUserAttributesRequest # noqa: Y015
|
|
322
|
+
|
|
323
|
+
@_typing.final
|
|
324
|
+
class Address(_message.Message):
|
|
325
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
326
|
+
|
|
327
|
+
ADDRESS_LINE_1_FIELD_NUMBER: _builtins.int
|
|
328
|
+
ADDRESS_LINE_2_FIELD_NUMBER: _builtins.int
|
|
329
|
+
CITY_FIELD_NUMBER: _builtins.int
|
|
330
|
+
REGION_CODE_FIELD_NUMBER: _builtins.int
|
|
331
|
+
POSTAL_CODE_FIELD_NUMBER: _builtins.int
|
|
332
|
+
COUNTRY_CODE_FIELD_NUMBER: _builtins.int
|
|
333
|
+
FORMATTED_ADDRESS_FIELD_NUMBER: _builtins.int
|
|
334
|
+
LATITUDE_FIELD_NUMBER: _builtins.int
|
|
335
|
+
LONGITUDE_FIELD_NUMBER: _builtins.int
|
|
336
|
+
GEOCODE_SOURCE_FIELD_NUMBER: _builtins.int
|
|
337
|
+
GEOCODE_OVERRIDE_FIELD_NUMBER: _builtins.int
|
|
338
|
+
address_line_1: _builtins.str
|
|
339
|
+
address_line_2: _builtins.str
|
|
340
|
+
city: _builtins.str
|
|
341
|
+
region_code: _builtins.str
|
|
342
|
+
postal_code: _builtins.str
|
|
343
|
+
country_code: _builtins.str
|
|
344
|
+
formatted_address: _builtins.str
|
|
345
|
+
latitude: _builtins.float
|
|
346
|
+
longitude: _builtins.float
|
|
347
|
+
geocode_source: Global___GeocodeSource.ValueType
|
|
348
|
+
geocode_override: _builtins.bool
|
|
349
|
+
def __init__(
|
|
350
|
+
self,
|
|
351
|
+
*,
|
|
352
|
+
address_line_1: _builtins.str = ...,
|
|
353
|
+
address_line_2: _builtins.str = ...,
|
|
354
|
+
city: _builtins.str = ...,
|
|
355
|
+
region_code: _builtins.str = ...,
|
|
356
|
+
postal_code: _builtins.str = ...,
|
|
357
|
+
country_code: _builtins.str = ...,
|
|
358
|
+
formatted_address: _builtins.str = ...,
|
|
359
|
+
latitude: _builtins.float = ...,
|
|
360
|
+
longitude: _builtins.float = ...,
|
|
361
|
+
geocode_source: Global___GeocodeSource.ValueType = ...,
|
|
362
|
+
geocode_override: _builtins.bool = ...,
|
|
363
|
+
) -> None: ...
|
|
364
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
365
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
366
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["address_line_1", b"address_line_1", "address_line_2", b"address_line_2", "city", b"city", "country_code", b"country_code", "formatted_address", b"formatted_address", "geocode_override", b"geocode_override", "geocode_source", b"geocode_source", "latitude", b"latitude", "longitude", b"longitude", "postal_code", b"postal_code", "region_code", b"region_code"] # noqa: Y015
|
|
367
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
368
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
369
|
+
|
|
370
|
+
Global___Address: _TypeAlias = Address # noqa: Y015
|
|
371
|
+
|
|
372
|
+
@_typing.final
|
|
373
|
+
class SystemInformation(_message.Message):
|
|
374
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
375
|
+
|
|
376
|
+
ID_FIELD_NUMBER: _builtins.int
|
|
377
|
+
NAME_FIELD_NUMBER: _builtins.int
|
|
378
|
+
TZ_IDENTIFIER_FIELD_NUMBER: _builtins.int
|
|
379
|
+
ADDRESS_FIELD_NUMBER: _builtins.int
|
|
380
|
+
id: _builtins.str
|
|
381
|
+
name: _builtins.str
|
|
382
|
+
tz_identifier: _builtins.str
|
|
383
|
+
@_builtins.property
|
|
384
|
+
def address(self) -> Global___Address:
|
|
385
|
+
"""KMP-only field; not confirmed in current Android APK."""
|
|
386
|
+
|
|
387
|
+
def __init__(
|
|
388
|
+
self,
|
|
389
|
+
*,
|
|
390
|
+
id: _builtins.str = ...,
|
|
391
|
+
name: _builtins.str = ...,
|
|
392
|
+
tz_identifier: _builtins.str = ...,
|
|
393
|
+
address: Global___Address | None = ...,
|
|
394
|
+
) -> None: ...
|
|
395
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["address", b"address"] # noqa: Y015
|
|
396
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
397
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["address", b"address", "id", b"id", "name", b"name", "tz_identifier", b"tz_identifier"] # noqa: Y015
|
|
398
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
399
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
400
|
+
|
|
401
|
+
Global___SystemInformation: _TypeAlias = SystemInformation # noqa: Y015
|
|
402
|
+
|
|
403
|
+
@_typing.final
|
|
404
|
+
class ListSystemInformationRequest(_message.Message):
|
|
405
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
406
|
+
|
|
407
|
+
def __init__(
|
|
408
|
+
self,
|
|
409
|
+
) -> None: ...
|
|
410
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
411
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
412
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
413
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
414
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
415
|
+
|
|
416
|
+
Global___ListSystemInformationRequest: _TypeAlias = ListSystemInformationRequest # noqa: Y015
|
|
417
|
+
|
|
418
|
+
@_typing.final
|
|
419
|
+
class ListSystemInformationResponse(_message.Message):
|
|
420
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
421
|
+
|
|
422
|
+
SYSTEMS_FIELD_NUMBER: _builtins.int
|
|
423
|
+
@_builtins.property
|
|
424
|
+
def systems(self) -> _containers.RepeatedCompositeFieldContainer[Global___SystemInformation]: ...
|
|
425
|
+
def __init__(
|
|
426
|
+
self,
|
|
427
|
+
*,
|
|
428
|
+
systems: _abc.Iterable[Global___SystemInformation] | None = ...,
|
|
429
|
+
) -> None: ...
|
|
430
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
431
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
432
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["systems", b"systems"] # noqa: Y015
|
|
433
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
434
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
435
|
+
|
|
436
|
+
Global___ListSystemInformationResponse: _TypeAlias = ListSystemInformationResponse # noqa: Y015
|
|
437
|
+
|
|
438
|
+
@_typing.final
|
|
439
|
+
class SetAddressRequest(_message.Message):
|
|
440
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
441
|
+
|
|
442
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
443
|
+
ADDRESS_FIELD_NUMBER: _builtins.int
|
|
444
|
+
system_id: _builtins.str
|
|
445
|
+
@_builtins.property
|
|
446
|
+
def address(self) -> Global___Address: ...
|
|
447
|
+
def __init__(
|
|
448
|
+
self,
|
|
449
|
+
*,
|
|
450
|
+
system_id: _builtins.str = ...,
|
|
451
|
+
address: Global___Address | None = ...,
|
|
452
|
+
) -> None: ...
|
|
453
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["address", b"address"] # noqa: Y015
|
|
454
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
455
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["address", b"address", "system_id", b"system_id"] # noqa: Y015
|
|
456
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
457
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
458
|
+
|
|
459
|
+
Global___SetAddressRequest: _TypeAlias = SetAddressRequest # noqa: Y015
|
|
460
|
+
|
|
461
|
+
@_typing.final
|
|
462
|
+
class SetAddressResponse(_message.Message):
|
|
463
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
464
|
+
|
|
465
|
+
SUCCESS_FIELD_NUMBER: _builtins.int
|
|
466
|
+
success: _builtins.bool
|
|
467
|
+
def __init__(
|
|
468
|
+
self,
|
|
469
|
+
*,
|
|
470
|
+
success: _builtins.bool = ...,
|
|
471
|
+
) -> None: ...
|
|
472
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
473
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
474
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["success", b"success"] # noqa: Y015
|
|
475
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
476
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
477
|
+
|
|
478
|
+
Global___SetAddressResponse: _TypeAlias = SetAddressResponse # noqa: Y015
|
|
479
|
+
|
|
480
|
+
@_typing.final
|
|
481
|
+
class EnergyMetricBucket(_message.Message):
|
|
482
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
483
|
+
|
|
484
|
+
START_TIME_FIELD_NUMBER: _builtins.int
|
|
485
|
+
STATUS_FIELD_NUMBER: _builtins.int
|
|
486
|
+
ENERGY_KWH_FIELD_NUMBER: _builtins.int
|
|
487
|
+
status: Global___MetricBucketStatus.ValueType
|
|
488
|
+
energy_kwh: _builtins.float
|
|
489
|
+
@_builtins.property
|
|
490
|
+
def start_time(self) -> _timestamp_pb2.Timestamp: ...
|
|
491
|
+
def __init__(
|
|
492
|
+
self,
|
|
493
|
+
*,
|
|
494
|
+
start_time: _timestamp_pb2.Timestamp | None = ...,
|
|
495
|
+
status: Global___MetricBucketStatus.ValueType = ...,
|
|
496
|
+
energy_kwh: _builtins.float = ...,
|
|
497
|
+
) -> None: ...
|
|
498
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["start_time", b"start_time"] # noqa: Y015
|
|
499
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
500
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["energy_kwh", b"energy_kwh", "start_time", b"start_time", "status", b"status"] # noqa: Y015
|
|
501
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
502
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
503
|
+
|
|
504
|
+
Global___EnergyMetricBucket: _TypeAlias = EnergyMetricBucket # noqa: Y015
|
|
505
|
+
|
|
506
|
+
@_typing.final
|
|
507
|
+
class SpaceEnergyMetrics(_message.Message):
|
|
508
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
509
|
+
|
|
510
|
+
SPACE_ID_FIELD_NUMBER: _builtins.int
|
|
511
|
+
BUCKET_RESOLUTION_FIELD_NUMBER: _builtins.int
|
|
512
|
+
ENERGY_BUCKETS_FIELD_NUMBER: _builtins.int
|
|
513
|
+
space_id: _builtins.str
|
|
514
|
+
bucket_resolution: Global___TimeResolution.ValueType
|
|
515
|
+
@_builtins.property
|
|
516
|
+
def energy_buckets(self) -> _containers.RepeatedCompositeFieldContainer[Global___EnergyMetricBucket]: ...
|
|
517
|
+
def __init__(
|
|
518
|
+
self,
|
|
519
|
+
*,
|
|
520
|
+
space_id: _builtins.str = ...,
|
|
521
|
+
bucket_resolution: Global___TimeResolution.ValueType = ...,
|
|
522
|
+
energy_buckets: _abc.Iterable[Global___EnergyMetricBucket] | None = ...,
|
|
523
|
+
) -> None: ...
|
|
524
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
525
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
526
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["bucket_resolution", b"bucket_resolution", "energy_buckets", b"energy_buckets", "space_id", b"space_id"] # noqa: Y015
|
|
527
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
528
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
529
|
+
|
|
530
|
+
Global___SpaceEnergyMetrics: _TypeAlias = SpaceEnergyMetrics # noqa: Y015
|
|
531
|
+
|
|
532
|
+
@_typing.final
|
|
533
|
+
class GetEnergyMetricsRequest(_message.Message):
|
|
534
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
535
|
+
|
|
536
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
537
|
+
START_TIME_FIELD_NUMBER: _builtins.int
|
|
538
|
+
END_TIME_FIELD_NUMBER: _builtins.int
|
|
539
|
+
PREFERRED_RESOLUTION_FIELD_NUMBER: _builtins.int
|
|
540
|
+
system_id: _builtins.str
|
|
541
|
+
preferred_resolution: Global___TimeResolution.ValueType
|
|
542
|
+
@_builtins.property
|
|
543
|
+
def start_time(self) -> _timestamp_pb2.Timestamp: ...
|
|
544
|
+
@_builtins.property
|
|
545
|
+
def end_time(self) -> _timestamp_pb2.Timestamp: ...
|
|
546
|
+
def __init__(
|
|
547
|
+
self,
|
|
548
|
+
*,
|
|
549
|
+
system_id: _builtins.str = ...,
|
|
550
|
+
start_time: _timestamp_pb2.Timestamp | None = ...,
|
|
551
|
+
end_time: _timestamp_pb2.Timestamp | None = ...,
|
|
552
|
+
preferred_resolution: Global___TimeResolution.ValueType = ...,
|
|
553
|
+
) -> None: ...
|
|
554
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["end_time", b"end_time", "start_time", b"start_time"] # noqa: Y015
|
|
555
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
556
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["end_time", b"end_time", "preferred_resolution", b"preferred_resolution", "start_time", b"start_time", "system_id", b"system_id"] # noqa: Y015
|
|
557
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
558
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
559
|
+
|
|
560
|
+
Global___GetEnergyMetricsRequest: _TypeAlias = GetEnergyMetricsRequest # noqa: Y015
|
|
561
|
+
|
|
562
|
+
@_typing.final
|
|
563
|
+
class GetEnergyMetricsResponse(_message.Message):
|
|
564
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
565
|
+
|
|
566
|
+
SPACE_ENERGY_METRICS_FIELD_NUMBER: _builtins.int
|
|
567
|
+
@_builtins.property
|
|
568
|
+
def space_energy_metrics(self) -> _containers.RepeatedCompositeFieldContainer[Global___SpaceEnergyMetrics]: ...
|
|
569
|
+
def __init__(
|
|
570
|
+
self,
|
|
571
|
+
*,
|
|
572
|
+
space_energy_metrics: _abc.Iterable[Global___SpaceEnergyMetrics] | None = ...,
|
|
573
|
+
) -> None: ...
|
|
574
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
575
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
576
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["space_energy_metrics", b"space_energy_metrics"] # noqa: Y015
|
|
577
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
578
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
579
|
+
|
|
580
|
+
Global___GetEnergyMetricsResponse: _TypeAlias = GetEnergyMetricsResponse # noqa: Y015
|
|
581
|
+
|
|
582
|
+
@_typing.final
|
|
583
|
+
class InviterInformation(_message.Message):
|
|
584
|
+
"""---------------------------------------------------------------------------
|
|
585
|
+
Invitation Service (GRPCInvitationClientService)
|
|
586
|
+
---------------------------------------------------------------------------
|
|
587
|
+
"""
|
|
588
|
+
|
|
589
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
590
|
+
|
|
591
|
+
FIRST_NAME_FIELD_NUMBER: _builtins.int
|
|
592
|
+
LAST_NAME_FIELD_NUMBER: _builtins.int
|
|
593
|
+
first_name: _builtins.str
|
|
594
|
+
last_name: _builtins.str
|
|
595
|
+
"""The KMP model also includes inviter email, but the current Android APK only
|
|
596
|
+
exposes first_name/last_name on the nested inviter message.
|
|
597
|
+
"""
|
|
598
|
+
def __init__(
|
|
599
|
+
self,
|
|
600
|
+
*,
|
|
601
|
+
first_name: _builtins.str = ...,
|
|
602
|
+
last_name: _builtins.str = ...,
|
|
603
|
+
) -> None: ...
|
|
604
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
605
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
606
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["first_name", b"first_name", "last_name", b"last_name"] # noqa: Y015
|
|
607
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
608
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
609
|
+
|
|
610
|
+
Global___InviterInformation: _TypeAlias = InviterInformation # noqa: Y015
|
|
611
|
+
|
|
612
|
+
@_typing.final
|
|
613
|
+
class Invitation(_message.Message):
|
|
614
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
615
|
+
|
|
616
|
+
ID_FIELD_NUMBER: _builtins.int
|
|
617
|
+
INVITEE_EMAIL_FIELD_NUMBER: _builtins.int
|
|
618
|
+
INVITED_BY_FIELD_NUMBER: _builtins.int
|
|
619
|
+
SYSTEM_NAME_FIELD_NUMBER: _builtins.int
|
|
620
|
+
ACCESS_ROLE_FIELD_NUMBER: _builtins.int
|
|
621
|
+
id: _builtins.str
|
|
622
|
+
invitee_email: _builtins.str
|
|
623
|
+
system_name: _builtins.str
|
|
624
|
+
access_role: Global___AccessRoleToSystem.ValueType
|
|
625
|
+
@_builtins.property
|
|
626
|
+
def invited_by(self) -> Global___InviterInformation: ...
|
|
627
|
+
def __init__(
|
|
628
|
+
self,
|
|
629
|
+
*,
|
|
630
|
+
id: _builtins.str = ...,
|
|
631
|
+
invitee_email: _builtins.str = ...,
|
|
632
|
+
invited_by: Global___InviterInformation | None = ...,
|
|
633
|
+
system_name: _builtins.str = ...,
|
|
634
|
+
access_role: Global___AccessRoleToSystem.ValueType = ...,
|
|
635
|
+
) -> None: ...
|
|
636
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["invited_by", b"invited_by"] # noqa: Y015
|
|
637
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
638
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["access_role", b"access_role", "id", b"id", "invited_by", b"invited_by", "invitee_email", b"invitee_email", "system_name", b"system_name"] # noqa: Y015
|
|
639
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
640
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
641
|
+
|
|
642
|
+
Global___Invitation: _TypeAlias = Invitation # noqa: Y015
|
|
643
|
+
|
|
644
|
+
@_typing.final
|
|
645
|
+
class ListPendingInvitationsRequest(_message.Message):
|
|
646
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
647
|
+
|
|
648
|
+
def __init__(
|
|
649
|
+
self,
|
|
650
|
+
) -> None: ...
|
|
651
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
652
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
653
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
654
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
655
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
656
|
+
|
|
657
|
+
Global___ListPendingInvitationsRequest: _TypeAlias = ListPendingInvitationsRequest # noqa: Y015
|
|
658
|
+
|
|
659
|
+
@_typing.final
|
|
660
|
+
class ListPendingInvitationsResponse(_message.Message):
|
|
661
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
662
|
+
|
|
663
|
+
INVITATIONS_FIELD_NUMBER: _builtins.int
|
|
664
|
+
@_builtins.property
|
|
665
|
+
def invitations(self) -> _containers.RepeatedCompositeFieldContainer[Global___Invitation]: ...
|
|
666
|
+
def __init__(
|
|
667
|
+
self,
|
|
668
|
+
*,
|
|
669
|
+
invitations: _abc.Iterable[Global___Invitation] | None = ...,
|
|
670
|
+
) -> None: ...
|
|
671
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
672
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
673
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitations", b"invitations"] # noqa: Y015
|
|
674
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
675
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
676
|
+
|
|
677
|
+
Global___ListPendingInvitationsResponse: _TypeAlias = ListPendingInvitationsResponse # noqa: Y015
|
|
678
|
+
|
|
679
|
+
@_typing.final
|
|
680
|
+
class CreateInvitationRequest(_message.Message):
|
|
681
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
682
|
+
|
|
683
|
+
INVITEE_EMAIL_FIELD_NUMBER: _builtins.int
|
|
684
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
685
|
+
ACCESS_ROLE_FIELD_NUMBER: _builtins.int
|
|
686
|
+
invitee_email: _builtins.str
|
|
687
|
+
system_id: _builtins.str
|
|
688
|
+
access_role: Global___AccessRoleToSystem.ValueType
|
|
689
|
+
def __init__(
|
|
690
|
+
self,
|
|
691
|
+
*,
|
|
692
|
+
invitee_email: _builtins.str = ...,
|
|
693
|
+
system_id: _builtins.str = ...,
|
|
694
|
+
access_role: Global___AccessRoleToSystem.ValueType = ...,
|
|
695
|
+
) -> None: ...
|
|
696
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
697
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
698
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["access_role", b"access_role", "invitee_email", b"invitee_email", "system_id", b"system_id"] # noqa: Y015
|
|
699
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
700
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
701
|
+
|
|
702
|
+
Global___CreateInvitationRequest: _TypeAlias = CreateInvitationRequest # noqa: Y015
|
|
703
|
+
|
|
704
|
+
@_typing.final
|
|
705
|
+
class CreateInvitationResponse(_message.Message):
|
|
706
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
707
|
+
|
|
708
|
+
INVITATION_FIELD_NUMBER: _builtins.int
|
|
709
|
+
@_builtins.property
|
|
710
|
+
def invitation(self) -> Global___Invitation: ...
|
|
711
|
+
def __init__(
|
|
712
|
+
self,
|
|
713
|
+
*,
|
|
714
|
+
invitation: Global___Invitation | None = ...,
|
|
715
|
+
) -> None: ...
|
|
716
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["invitation", b"invitation"] # noqa: Y015
|
|
717
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
718
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation", b"invitation"] # noqa: Y015
|
|
719
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
720
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
721
|
+
|
|
722
|
+
Global___CreateInvitationResponse: _TypeAlias = CreateInvitationResponse # noqa: Y015
|
|
723
|
+
|
|
724
|
+
@_typing.final
|
|
725
|
+
class AcceptInvitationRequest(_message.Message):
|
|
726
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
727
|
+
|
|
728
|
+
INVITATION_ID_FIELD_NUMBER: _builtins.int
|
|
729
|
+
invitation_id: _builtins.str
|
|
730
|
+
def __init__(
|
|
731
|
+
self,
|
|
732
|
+
*,
|
|
733
|
+
invitation_id: _builtins.str = ...,
|
|
734
|
+
) -> None: ...
|
|
735
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
736
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
737
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation_id", b"invitation_id"] # noqa: Y015
|
|
738
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
739
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
740
|
+
|
|
741
|
+
Global___AcceptInvitationRequest: _TypeAlias = AcceptInvitationRequest # noqa: Y015
|
|
742
|
+
|
|
743
|
+
@_typing.final
|
|
744
|
+
class AcceptInvitationResponse(_message.Message):
|
|
745
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
746
|
+
|
|
747
|
+
def __init__(
|
|
748
|
+
self,
|
|
749
|
+
) -> None: ...
|
|
750
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
751
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
752
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
753
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
754
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
755
|
+
|
|
756
|
+
Global___AcceptInvitationResponse: _TypeAlias = AcceptInvitationResponse # noqa: Y015
|
|
757
|
+
|
|
758
|
+
@_typing.final
|
|
759
|
+
class RejectInvitationRequest(_message.Message):
|
|
760
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
761
|
+
|
|
762
|
+
INVITATION_ID_FIELD_NUMBER: _builtins.int
|
|
763
|
+
invitation_id: _builtins.str
|
|
764
|
+
def __init__(
|
|
765
|
+
self,
|
|
766
|
+
*,
|
|
767
|
+
invitation_id: _builtins.str = ...,
|
|
768
|
+
) -> None: ...
|
|
769
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
770
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
771
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation_id", b"invitation_id"] # noqa: Y015
|
|
772
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
773
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
774
|
+
|
|
775
|
+
Global___RejectInvitationRequest: _TypeAlias = RejectInvitationRequest # noqa: Y015
|
|
776
|
+
|
|
777
|
+
@_typing.final
|
|
778
|
+
class RejectInvitationResponse(_message.Message):
|
|
779
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
780
|
+
|
|
781
|
+
def __init__(
|
|
782
|
+
self,
|
|
783
|
+
) -> None: ...
|
|
784
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
785
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
786
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
787
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
788
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
789
|
+
|
|
790
|
+
Global___RejectInvitationResponse: _TypeAlias = RejectInvitationResponse # noqa: Y015
|
|
791
|
+
|
|
792
|
+
@_typing.final
|
|
793
|
+
class CancelInvitationRequest(_message.Message):
|
|
794
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
795
|
+
|
|
796
|
+
INVITATION_ID_FIELD_NUMBER: _builtins.int
|
|
797
|
+
invitation_id: _builtins.str
|
|
798
|
+
def __init__(
|
|
799
|
+
self,
|
|
800
|
+
*,
|
|
801
|
+
invitation_id: _builtins.str = ...,
|
|
802
|
+
) -> None: ...
|
|
803
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
804
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
805
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation_id", b"invitation_id"] # noqa: Y015
|
|
806
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
807
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
808
|
+
|
|
809
|
+
Global___CancelInvitationRequest: _TypeAlias = CancelInvitationRequest # noqa: Y015
|
|
810
|
+
|
|
811
|
+
@_typing.final
|
|
812
|
+
class CancelInvitationResponse(_message.Message):
|
|
813
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
814
|
+
|
|
815
|
+
def __init__(
|
|
816
|
+
self,
|
|
817
|
+
) -> None: ...
|
|
818
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
819
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
820
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
821
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
822
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
823
|
+
|
|
824
|
+
Global___CancelInvitationResponse: _TypeAlias = CancelInvitationResponse # noqa: Y015
|
|
825
|
+
|
|
826
|
+
@_typing.final
|
|
827
|
+
class SendNotificationForInvitationRequest(_message.Message):
|
|
828
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
829
|
+
|
|
830
|
+
INVITATION_ID_FIELD_NUMBER: _builtins.int
|
|
831
|
+
invitation_id: _builtins.str
|
|
832
|
+
def __init__(
|
|
833
|
+
self,
|
|
834
|
+
*,
|
|
835
|
+
invitation_id: _builtins.str = ...,
|
|
836
|
+
) -> None: ...
|
|
837
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
838
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
839
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation_id", b"invitation_id"] # noqa: Y015
|
|
840
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
841
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
842
|
+
|
|
843
|
+
Global___SendNotificationForInvitationRequest: _TypeAlias = SendNotificationForInvitationRequest # noqa: Y015
|
|
844
|
+
|
|
845
|
+
@_typing.final
|
|
846
|
+
class SendNotificationForInvitationResponse(_message.Message):
|
|
847
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
848
|
+
|
|
849
|
+
def __init__(
|
|
850
|
+
self,
|
|
851
|
+
) -> None: ...
|
|
852
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
853
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
854
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
855
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
856
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
857
|
+
|
|
858
|
+
Global___SendNotificationForInvitationResponse: _TypeAlias = SendNotificationForInvitationResponse # noqa: Y015
|
|
859
|
+
|
|
860
|
+
@_typing.final
|
|
861
|
+
class PartnerDetails(_message.Message):
|
|
862
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
863
|
+
|
|
864
|
+
ORGANIZATION_ID_FIELD_NUMBER: _builtins.int
|
|
865
|
+
ORGANIZATION_NAME_FIELD_NUMBER: _builtins.int
|
|
866
|
+
organization_id: _builtins.str
|
|
867
|
+
organization_name: _builtins.str
|
|
868
|
+
def __init__(
|
|
869
|
+
self,
|
|
870
|
+
*,
|
|
871
|
+
organization_id: _builtins.str = ...,
|
|
872
|
+
organization_name: _builtins.str = ...,
|
|
873
|
+
) -> None: ...
|
|
874
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
875
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
876
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["organization_id", b"organization_id", "organization_name", b"organization_name"] # noqa: Y015
|
|
877
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
878
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
879
|
+
|
|
880
|
+
Global___PartnerDetails: _TypeAlias = PartnerDetails # noqa: Y015
|
|
881
|
+
|
|
882
|
+
@_typing.final
|
|
883
|
+
class InviteSystemOwnerRequest(_message.Message):
|
|
884
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
885
|
+
|
|
886
|
+
OWNER_EMAIL_FIELD_NUMBER: _builtins.int
|
|
887
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
888
|
+
AFTER_INVITE_BEHAVIOR_FIELD_NUMBER: _builtins.int
|
|
889
|
+
owner_email: _builtins.str
|
|
890
|
+
system_id: _builtins.str
|
|
891
|
+
after_invite_behavior: Global___AfterInviteBehavior.ValueType
|
|
892
|
+
def __init__(
|
|
893
|
+
self,
|
|
894
|
+
*,
|
|
895
|
+
owner_email: _builtins.str = ...,
|
|
896
|
+
system_id: _builtins.str = ...,
|
|
897
|
+
after_invite_behavior: Global___AfterInviteBehavior.ValueType = ...,
|
|
898
|
+
) -> None: ...
|
|
899
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
900
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
901
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["after_invite_behavior", b"after_invite_behavior", "owner_email", b"owner_email", "system_id", b"system_id"] # noqa: Y015
|
|
902
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
903
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
904
|
+
|
|
905
|
+
Global___InviteSystemOwnerRequest: _TypeAlias = InviteSystemOwnerRequest # noqa: Y015
|
|
906
|
+
|
|
907
|
+
@_typing.final
|
|
908
|
+
class InviteSystemOwnerResponse(_message.Message):
|
|
909
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
910
|
+
|
|
911
|
+
INVITATION_FIELD_NUMBER: _builtins.int
|
|
912
|
+
@_builtins.property
|
|
913
|
+
def invitation(self) -> Global___Invitation: ...
|
|
914
|
+
def __init__(
|
|
915
|
+
self,
|
|
916
|
+
*,
|
|
917
|
+
invitation: Global___Invitation | None = ...,
|
|
918
|
+
) -> None: ...
|
|
919
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["invitation", b"invitation"] # noqa: Y015
|
|
920
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
921
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitation", b"invitation"] # noqa: Y015
|
|
922
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
923
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
924
|
+
|
|
925
|
+
Global___InviteSystemOwnerResponse: _TypeAlias = InviteSystemOwnerResponse # noqa: Y015
|
|
926
|
+
|
|
927
|
+
@_typing.final
|
|
928
|
+
class GetLoggedInUserPartnerDetailsRequest(_message.Message):
|
|
929
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
930
|
+
|
|
931
|
+
def __init__(
|
|
932
|
+
self,
|
|
933
|
+
) -> None: ...
|
|
934
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
935
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
936
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
937
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
938
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
939
|
+
|
|
940
|
+
Global___GetLoggedInUserPartnerDetailsRequest: _TypeAlias = GetLoggedInUserPartnerDetailsRequest # noqa: Y015
|
|
941
|
+
|
|
942
|
+
@_typing.final
|
|
943
|
+
class GetLoggedInUserPartnerDetailsResponse(_message.Message):
|
|
944
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
945
|
+
|
|
946
|
+
PARTNER_DETAILS_FIELD_NUMBER: _builtins.int
|
|
947
|
+
@_builtins.property
|
|
948
|
+
def partner_details(self) -> Global___PartnerDetails: ...
|
|
949
|
+
def __init__(
|
|
950
|
+
self,
|
|
951
|
+
*,
|
|
952
|
+
partner_details: Global___PartnerDetails | None = ...,
|
|
953
|
+
) -> None: ...
|
|
954
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["partner_details", b"partner_details"] # noqa: Y015
|
|
955
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
956
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["partner_details", b"partner_details"] # noqa: Y015
|
|
957
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
958
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
959
|
+
|
|
960
|
+
Global___GetLoggedInUserPartnerDetailsResponse: _TypeAlias = GetLoggedInUserPartnerDetailsResponse # noqa: Y015
|
|
961
|
+
|
|
962
|
+
@_typing.final
|
|
963
|
+
class JoinPartnerOrganizationRequest(_message.Message):
|
|
964
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
965
|
+
|
|
966
|
+
PARTNER_CODE_FIELD_NUMBER: _builtins.int
|
|
967
|
+
partner_code: _builtins.str
|
|
968
|
+
def __init__(
|
|
969
|
+
self,
|
|
970
|
+
*,
|
|
971
|
+
partner_code: _builtins.str = ...,
|
|
972
|
+
) -> None: ...
|
|
973
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
974
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
975
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["partner_code", b"partner_code"] # noqa: Y015
|
|
976
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
977
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
978
|
+
|
|
979
|
+
Global___JoinPartnerOrganizationRequest: _TypeAlias = JoinPartnerOrganizationRequest # noqa: Y015
|
|
980
|
+
|
|
981
|
+
@_typing.final
|
|
982
|
+
class JoinPartnerOrganizationResponse(_message.Message):
|
|
983
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
984
|
+
|
|
985
|
+
PARTNER_DETAILS_FIELD_NUMBER: _builtins.int
|
|
986
|
+
@_builtins.property
|
|
987
|
+
def partner_details(self) -> Global___PartnerDetails: ...
|
|
988
|
+
def __init__(
|
|
989
|
+
self,
|
|
990
|
+
*,
|
|
991
|
+
partner_details: Global___PartnerDetails | None = ...,
|
|
992
|
+
) -> None: ...
|
|
993
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["partner_details", b"partner_details"] # noqa: Y015
|
|
994
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
995
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["partner_details", b"partner_details"] # noqa: Y015
|
|
996
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
997
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
998
|
+
|
|
999
|
+
Global___JoinPartnerOrganizationResponse: _TypeAlias = JoinPartnerOrganizationResponse # noqa: Y015
|
|
1000
|
+
|
|
1001
|
+
@_typing.final
|
|
1002
|
+
class LeavePartnerOrganizationRequest(_message.Message):
|
|
1003
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1004
|
+
|
|
1005
|
+
PARTNER_ORGANIZATION_ID_FIELD_NUMBER: _builtins.int
|
|
1006
|
+
partner_organization_id: _builtins.str
|
|
1007
|
+
def __init__(
|
|
1008
|
+
self,
|
|
1009
|
+
*,
|
|
1010
|
+
partner_organization_id: _builtins.str = ...,
|
|
1011
|
+
) -> None: ...
|
|
1012
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1013
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1014
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["partner_organization_id", b"partner_organization_id"] # noqa: Y015
|
|
1015
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1016
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1017
|
+
|
|
1018
|
+
Global___LeavePartnerOrganizationRequest: _TypeAlias = LeavePartnerOrganizationRequest # noqa: Y015
|
|
1019
|
+
|
|
1020
|
+
@_typing.final
|
|
1021
|
+
class LeavePartnerOrganizationResponse(_message.Message):
|
|
1022
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1023
|
+
|
|
1024
|
+
def __init__(
|
|
1025
|
+
self,
|
|
1026
|
+
) -> None: ...
|
|
1027
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1028
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1029
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1030
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1031
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1032
|
+
|
|
1033
|
+
Global___LeavePartnerOrganizationResponse: _TypeAlias = LeavePartnerOrganizationResponse # noqa: Y015
|
|
1034
|
+
|
|
1035
|
+
@_typing.final
|
|
1036
|
+
class UserList(_message.Message):
|
|
1037
|
+
"""---------------------------------------------------------------------------
|
|
1038
|
+
System User Service (GRPCSystemUserClientService)
|
|
1039
|
+
---------------------------------------------------------------------------
|
|
1040
|
+
"""
|
|
1041
|
+
|
|
1042
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1043
|
+
|
|
1044
|
+
USERS_FIELD_NUMBER: _builtins.int
|
|
1045
|
+
@_builtins.property
|
|
1046
|
+
def users(self) -> _containers.RepeatedCompositeFieldContainer[Global___User]: ...
|
|
1047
|
+
def __init__(
|
|
1048
|
+
self,
|
|
1049
|
+
*,
|
|
1050
|
+
users: _abc.Iterable[Global___User] | None = ...,
|
|
1051
|
+
) -> None: ...
|
|
1052
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1053
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1054
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["users", b"users"] # noqa: Y015
|
|
1055
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1056
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1057
|
+
|
|
1058
|
+
Global___UserList: _TypeAlias = UserList # noqa: Y015
|
|
1059
|
+
|
|
1060
|
+
@_typing.final
|
|
1061
|
+
class InvitationList(_message.Message):
|
|
1062
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1063
|
+
|
|
1064
|
+
INVITATIONS_FIELD_NUMBER: _builtins.int
|
|
1065
|
+
@_builtins.property
|
|
1066
|
+
def invitations(self) -> _containers.RepeatedCompositeFieldContainer[Global___Invitation]: ...
|
|
1067
|
+
def __init__(
|
|
1068
|
+
self,
|
|
1069
|
+
*,
|
|
1070
|
+
invitations: _abc.Iterable[Global___Invitation] | None = ...,
|
|
1071
|
+
) -> None: ...
|
|
1072
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1073
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1074
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["invitations", b"invitations"] # noqa: Y015
|
|
1075
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1076
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1077
|
+
|
|
1078
|
+
Global___InvitationList: _TypeAlias = InvitationList # noqa: Y015
|
|
1079
|
+
|
|
1080
|
+
@_typing.final
|
|
1081
|
+
class ListSystemUsersRequest(_message.Message):
|
|
1082
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1083
|
+
|
|
1084
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
1085
|
+
FIELD_MASK_FIELD_NUMBER: _builtins.int
|
|
1086
|
+
system_id: _builtins.str
|
|
1087
|
+
@_builtins.property
|
|
1088
|
+
def field_mask(self) -> _field_mask_pb2.FieldMask: ...
|
|
1089
|
+
def __init__(
|
|
1090
|
+
self,
|
|
1091
|
+
*,
|
|
1092
|
+
system_id: _builtins.str = ...,
|
|
1093
|
+
field_mask: _field_mask_pb2.FieldMask | None = ...,
|
|
1094
|
+
) -> None: ...
|
|
1095
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["field_mask", b"field_mask"] # noqa: Y015
|
|
1096
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1097
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["field_mask", b"field_mask", "system_id", b"system_id"] # noqa: Y015
|
|
1098
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1099
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1100
|
+
|
|
1101
|
+
Global___ListSystemUsersRequest: _TypeAlias = ListSystemUsersRequest # noqa: Y015
|
|
1102
|
+
|
|
1103
|
+
@_typing.final
|
|
1104
|
+
class ListSystemUsersResponse(_message.Message):
|
|
1105
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1106
|
+
|
|
1107
|
+
ADMINISTRATORS_FIELD_NUMBER: _builtins.int
|
|
1108
|
+
MEMBERS_FIELD_NUMBER: _builtins.int
|
|
1109
|
+
PENDING_INVITATIONS_FIELD_NUMBER: _builtins.int
|
|
1110
|
+
@_builtins.property
|
|
1111
|
+
def administrators(self) -> Global___UserList: ...
|
|
1112
|
+
@_builtins.property
|
|
1113
|
+
def members(self) -> Global___UserList: ...
|
|
1114
|
+
@_builtins.property
|
|
1115
|
+
def pending_invitations(self) -> Global___InvitationList: ...
|
|
1116
|
+
def __init__(
|
|
1117
|
+
self,
|
|
1118
|
+
*,
|
|
1119
|
+
administrators: Global___UserList | None = ...,
|
|
1120
|
+
members: Global___UserList | None = ...,
|
|
1121
|
+
pending_invitations: Global___InvitationList | None = ...,
|
|
1122
|
+
) -> None: ...
|
|
1123
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["administrators", b"administrators", "members", b"members", "pending_invitations", b"pending_invitations"] # noqa: Y015
|
|
1124
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1125
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["administrators", b"administrators", "members", b"members", "pending_invitations", b"pending_invitations"] # noqa: Y015
|
|
1126
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1127
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1128
|
+
|
|
1129
|
+
Global___ListSystemUsersResponse: _TypeAlias = ListSystemUsersResponse # noqa: Y015
|
|
1130
|
+
|
|
1131
|
+
@_typing.final
|
|
1132
|
+
class GetRoleOfLoggedInSystemUserRequest(_message.Message):
|
|
1133
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1134
|
+
|
|
1135
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
1136
|
+
system_id: _builtins.str
|
|
1137
|
+
def __init__(
|
|
1138
|
+
self,
|
|
1139
|
+
*,
|
|
1140
|
+
system_id: _builtins.str = ...,
|
|
1141
|
+
) -> None: ...
|
|
1142
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1143
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1144
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["system_id", b"system_id"] # noqa: Y015
|
|
1145
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1146
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1147
|
+
|
|
1148
|
+
Global___GetRoleOfLoggedInSystemUserRequest: _TypeAlias = GetRoleOfLoggedInSystemUserRequest # noqa: Y015
|
|
1149
|
+
|
|
1150
|
+
@_typing.final
|
|
1151
|
+
class GetRoleOfLoggedInSystemUserResponse(_message.Message):
|
|
1152
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1153
|
+
|
|
1154
|
+
ACCESS_ROLE_FIELD_NUMBER: _builtins.int
|
|
1155
|
+
access_role: Global___AccessRoleToSystem.ValueType
|
|
1156
|
+
def __init__(
|
|
1157
|
+
self,
|
|
1158
|
+
*,
|
|
1159
|
+
access_role: Global___AccessRoleToSystem.ValueType = ...,
|
|
1160
|
+
) -> None: ...
|
|
1161
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1162
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1163
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["access_role", b"access_role"] # noqa: Y015
|
|
1164
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1165
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1166
|
+
|
|
1167
|
+
Global___GetRoleOfLoggedInSystemUserResponse: _TypeAlias = GetRoleOfLoggedInSystemUserResponse # noqa: Y015
|
|
1168
|
+
|
|
1169
|
+
@_typing.final
|
|
1170
|
+
class RemoveSystemUserRequest(_message.Message):
|
|
1171
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1172
|
+
|
|
1173
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
1174
|
+
USER_ID_FIELD_NUMBER: _builtins.int
|
|
1175
|
+
system_id: _builtins.str
|
|
1176
|
+
user_id: _builtins.str
|
|
1177
|
+
def __init__(
|
|
1178
|
+
self,
|
|
1179
|
+
*,
|
|
1180
|
+
system_id: _builtins.str = ...,
|
|
1181
|
+
user_id: _builtins.str = ...,
|
|
1182
|
+
) -> None: ...
|
|
1183
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1184
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1185
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["system_id", b"system_id", "user_id", b"user_id"] # noqa: Y015
|
|
1186
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1187
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1188
|
+
|
|
1189
|
+
Global___RemoveSystemUserRequest: _TypeAlias = RemoveSystemUserRequest # noqa: Y015
|
|
1190
|
+
|
|
1191
|
+
@_typing.final
|
|
1192
|
+
class RemoveSystemUserResponse(_message.Message):
|
|
1193
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1194
|
+
|
|
1195
|
+
def __init__(
|
|
1196
|
+
self,
|
|
1197
|
+
) -> None: ...
|
|
1198
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1199
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1200
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1201
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1202
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1203
|
+
|
|
1204
|
+
Global___RemoveSystemUserResponse: _TypeAlias = RemoveSystemUserResponse # noqa: Y015
|
|
1205
|
+
|
|
1206
|
+
@_typing.final
|
|
1207
|
+
class RemoveLoggedInSystemUserRequest(_message.Message):
|
|
1208
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1209
|
+
|
|
1210
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
1211
|
+
system_id: _builtins.str
|
|
1212
|
+
def __init__(
|
|
1213
|
+
self,
|
|
1214
|
+
*,
|
|
1215
|
+
system_id: _builtins.str = ...,
|
|
1216
|
+
) -> None: ...
|
|
1217
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1218
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1219
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["system_id", b"system_id"] # noqa: Y015
|
|
1220
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1221
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1222
|
+
|
|
1223
|
+
Global___RemoveLoggedInSystemUserRequest: _TypeAlias = RemoveLoggedInSystemUserRequest # noqa: Y015
|
|
1224
|
+
|
|
1225
|
+
@_typing.final
|
|
1226
|
+
class RemoveLoggedInSystemUserResponse(_message.Message):
|
|
1227
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1228
|
+
|
|
1229
|
+
def __init__(
|
|
1230
|
+
self,
|
|
1231
|
+
) -> None: ...
|
|
1232
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1233
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1234
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1235
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1236
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1237
|
+
|
|
1238
|
+
Global___RemoveLoggedInSystemUserResponse: _TypeAlias = RemoveLoggedInSystemUserResponse # noqa: Y015
|
|
1239
|
+
|
|
1240
|
+
@_typing.final
|
|
1241
|
+
class ChangeRoleOfSystemUserRequest(_message.Message):
|
|
1242
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1243
|
+
|
|
1244
|
+
SYSTEM_ID_FIELD_NUMBER: _builtins.int
|
|
1245
|
+
USER_ID_FIELD_NUMBER: _builtins.int
|
|
1246
|
+
NEW_ACCESS_ROLE_FIELD_NUMBER: _builtins.int
|
|
1247
|
+
system_id: _builtins.str
|
|
1248
|
+
user_id: _builtins.str
|
|
1249
|
+
new_access_role: Global___AccessRoleToSystem.ValueType
|
|
1250
|
+
def __init__(
|
|
1251
|
+
self,
|
|
1252
|
+
*,
|
|
1253
|
+
system_id: _builtins.str = ...,
|
|
1254
|
+
user_id: _builtins.str = ...,
|
|
1255
|
+
new_access_role: Global___AccessRoleToSystem.ValueType = ...,
|
|
1256
|
+
) -> None: ...
|
|
1257
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1258
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1259
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["new_access_role", b"new_access_role", "system_id", b"system_id", "user_id", b"user_id"] # noqa: Y015
|
|
1260
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1261
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1262
|
+
|
|
1263
|
+
Global___ChangeRoleOfSystemUserRequest: _TypeAlias = ChangeRoleOfSystemUserRequest # noqa: Y015
|
|
1264
|
+
|
|
1265
|
+
@_typing.final
|
|
1266
|
+
class ChangeRoleOfSystemUserResponse(_message.Message):
|
|
1267
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1268
|
+
|
|
1269
|
+
def __init__(
|
|
1270
|
+
self,
|
|
1271
|
+
) -> None: ...
|
|
1272
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1273
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1274
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1275
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1276
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1277
|
+
|
|
1278
|
+
Global___ChangeRoleOfSystemUserResponse: _TypeAlias = ChangeRoleOfSystemUserResponse # noqa: Y015
|
|
1279
|
+
|
|
1280
|
+
@_typing.final
|
|
1281
|
+
class AuthorizeNewDeviceRequest(_message.Message):
|
|
1282
|
+
"""---------------------------------------------------------------------------
|
|
1283
|
+
Mobile App Service (GRPCMobileAppClientService)
|
|
1284
|
+
---------------------------------------------------------------------------
|
|
1285
|
+
"""
|
|
1286
|
+
|
|
1287
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1288
|
+
|
|
1289
|
+
DEVICE_SERIAL_NUMBER_FIELD_NUMBER: _builtins.int
|
|
1290
|
+
SPACE_ID_FIELD_NUMBER: _builtins.int
|
|
1291
|
+
device_serial_number: _builtins.str
|
|
1292
|
+
space_id: _builtins.str
|
|
1293
|
+
def __init__(
|
|
1294
|
+
self,
|
|
1295
|
+
*,
|
|
1296
|
+
device_serial_number: _builtins.str = ...,
|
|
1297
|
+
space_id: _builtins.str = ...,
|
|
1298
|
+
) -> None: ...
|
|
1299
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1300
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1301
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["device_serial_number", b"device_serial_number", "space_id", b"space_id"] # noqa: Y015
|
|
1302
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1303
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1304
|
+
|
|
1305
|
+
Global___AuthorizeNewDeviceRequest: _TypeAlias = AuthorizeNewDeviceRequest # noqa: Y015
|
|
1306
|
+
|
|
1307
|
+
@_typing.final
|
|
1308
|
+
class AuthorizeNewDeviceResponse(_message.Message):
|
|
1309
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
1310
|
+
|
|
1311
|
+
def __init__(
|
|
1312
|
+
self,
|
|
1313
|
+
) -> None: ...
|
|
1314
|
+
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1315
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
1316
|
+
_ClearFieldArgType: _TypeAlias = _Never # noqa: Y015
|
|
1317
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
1318
|
+
def WhichOneof(self, oneof_group: _Never) -> None: ...
|
|
1319
|
+
|
|
1320
|
+
Global___AuthorizeNewDeviceResponse: _TypeAlias = AuthorizeNewDeviceResponse # noqa: Y015
|