Source code for wolk_gateway_module.model.sensor_reading

"""Sensor reading model."""
#   Copyright 2019 WolkAbout Technology s.r.o.
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
from dataclasses import dataclass
from dataclasses import field
from typing import Optional
from typing import Tuple
from typing import Union


[docs]@dataclass class SensorReading: """ Holds information about a sensor reading. :ivar reference: Device sensor's reference as defined in device template :vartype reference: str :ivar value: Data that the sensor reading yielded :vartype value: bool or int or float or str or Tuple[int, int] or Tuple[int, int, int] or Tuple[float, float] or Tuple[float, float, float] or Tuple[str, str] or Tuple[str, str, str] :ivar timestamp: Unix timestamp in miliseconds. If not provided, Platform will assign timestamp when it receives it. :vartype timestamp: Optional[int] """ reference: str value: Union[ bool, int, float, str, Tuple[int, int], Tuple[int, int, int], Tuple[float, float], Tuple[float, float, float], Tuple[str, str], Tuple[str, str, str], ] timestamp: Optional[int] = field(default=None)