frost-sta-client 1.1.49__py2.py3-none-any.whl → 1.1.51__py2.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.
- frost_sta_client/__version__.py +1 -1
- frost_sta_client/model/actuator.py +1 -1
- frost_sta_client/model/datastream.py +338 -338
- frost_sta_client/model/ext/data_array_document.py +67 -68
- frost_sta_client/model/ext/entity_list.py +169 -162
- frost_sta_client/model/feature_of_interest.py +1 -1
- frost_sta_client/model/historical_location.py +1 -1
- frost_sta_client/model/location.py +2 -2
- frost_sta_client/model/multi_datastream.py +345 -345
- frost_sta_client/model/observedproperty.py +210 -210
- frost_sta_client/model/task.py +3 -3
- frost_sta_client/model/tasking_capability.py +2 -2
- {frost_sta_client-1.1.49.dist-info → frost_sta_client-1.1.51.dist-info}/METADATA +1 -1
- {frost_sta_client-1.1.49.dist-info → frost_sta_client-1.1.51.dist-info}/RECORD +17 -17
- {frost_sta_client-1.1.49.dist-info → frost_sta_client-1.1.51.dist-info}/WHEEL +0 -0
- {frost_sta_client-1.1.49.dist-info → frost_sta_client-1.1.51.dist-info}/licenses/LICENSE +0 -0
- {frost_sta_client-1.1.49.dist-info → frost_sta_client-1.1.51.dist-info}/top_level.txt +0 -0
frost_sta_client/__version__.py
CHANGED
@@ -165,7 +165,7 @@ class Actuator(entity.Entity):
|
|
165
165
|
if self.properties is not None and self.properties != {}:
|
166
166
|
data['properties'] = self.properties
|
167
167
|
if self.tasking_capabilities is not None and len(self.tasking_capabilities.entities) > 0:
|
168
|
-
data['
|
168
|
+
data['TaskingCapabilities'] = self.tasking_capabilities.__getstate__()
|
169
169
|
return data
|
170
170
|
|
171
171
|
def __setstate__(self, state):
|