module Stratosphere.IoTFleetWise.SignalCatalog.SensorProperty (
SensorProperty(..), mkSensorProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SensorProperty
=
SensorProperty {SensorProperty -> ()
haddock_workaround_ :: (),
SensorProperty -> Maybe (ValueList Text)
allowedValues :: (Prelude.Maybe (ValueList Prelude.Text)),
SensorProperty -> Value Text
dataType :: (Value Prelude.Text),
SensorProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
SensorProperty -> Value Text
fullyQualifiedName :: (Value Prelude.Text),
SensorProperty -> Maybe (Value Double)
max :: (Prelude.Maybe (Value Prelude.Double)),
SensorProperty -> Maybe (Value Double)
min :: (Prelude.Maybe (Value Prelude.Double)),
SensorProperty -> Maybe (Value Text)
unit :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (SensorProperty -> SensorProperty -> Bool
(SensorProperty -> SensorProperty -> Bool)
-> (SensorProperty -> SensorProperty -> Bool) -> Eq SensorProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SensorProperty -> SensorProperty -> Bool
== :: SensorProperty -> SensorProperty -> Bool
$c/= :: SensorProperty -> SensorProperty -> Bool
/= :: SensorProperty -> SensorProperty -> Bool
Prelude.Eq, Int -> SensorProperty -> ShowS
[SensorProperty] -> ShowS
SensorProperty -> String
(Int -> SensorProperty -> ShowS)
-> (SensorProperty -> String)
-> ([SensorProperty] -> ShowS)
-> Show SensorProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SensorProperty -> ShowS
showsPrec :: Int -> SensorProperty -> ShowS
$cshow :: SensorProperty -> String
show :: SensorProperty -> String
$cshowList :: [SensorProperty] -> ShowS
showList :: [SensorProperty] -> ShowS
Prelude.Show)
mkSensorProperty ::
Value Prelude.Text -> Value Prelude.Text -> SensorProperty
mkSensorProperty :: Value Text -> Value Text -> SensorProperty
mkSensorProperty Value Text
dataType Value Text
fullyQualifiedName
= SensorProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), dataType :: Value Text
dataType = Value Text
dataType,
fullyQualifiedName :: Value Text
fullyQualifiedName = Value Text
fullyQualifiedName,
allowedValues :: Maybe (ValueList Text)
allowedValues = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
max :: Maybe (Value Double)
max = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing, min :: Maybe (Value Double)
min = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
unit :: Maybe (Value Text)
unit = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SensorProperty where
toResourceProperties :: SensorProperty -> ResourceProperties
toResourceProperties SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::IoTFleetWise::SignalCatalog.Sensor",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DataType" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
dataType,
Key
"FullyQualifiedName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
fullyQualifiedName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AllowedValues" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
allowedValues,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Max" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
max, Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Min" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
min,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Unit" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
unit]))}
instance JSON.ToJSON SensorProperty where
toJSON :: SensorProperty -> Value
toJSON SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DataType" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
dataType,
Key
"FullyQualifiedName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
fullyQualifiedName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AllowedValues" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
allowedValues,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Max" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
max, Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Min" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
min,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Unit" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
unit])))
instance Property "AllowedValues" SensorProperty where
type PropertyType "AllowedValues" SensorProperty = ValueList Prelude.Text
set :: PropertyType "AllowedValues" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "AllowedValues" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {allowedValues :: Maybe (ValueList Text)
allowedValues = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AllowedValues" SensorProperty
ValueList Text
newValue, Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "DataType" SensorProperty where
type PropertyType "DataType" SensorProperty = Value Prelude.Text
set :: PropertyType "DataType" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "DataType" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {dataType :: Value Text
dataType = PropertyType "DataType" SensorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "Description" SensorProperty where
type PropertyType "Description" SensorProperty = Value Prelude.Text
set :: PropertyType "Description" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "Description" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" SensorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "FullyQualifiedName" SensorProperty where
type PropertyType "FullyQualifiedName" SensorProperty = Value Prelude.Text
set :: PropertyType "FullyQualifiedName" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "FullyQualifiedName" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {fullyQualifiedName :: Value Text
fullyQualifiedName = PropertyType "FullyQualifiedName" SensorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "Max" SensorProperty where
type PropertyType "Max" SensorProperty = Value Prelude.Double
set :: PropertyType "Max" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "Max" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {max :: Maybe (Value Double)
max = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Max" SensorProperty
Value Double
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "Min" SensorProperty where
type PropertyType "Min" SensorProperty = Value Prelude.Double
set :: PropertyType "Min" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "Min" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {min :: Maybe (Value Double)
min = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Min" SensorProperty
Value Double
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
instance Property "Unit" SensorProperty where
type PropertyType "Unit" SensorProperty = Value Prelude.Text
set :: PropertyType "Unit" SensorProperty
-> SensorProperty -> SensorProperty
set PropertyType "Unit" SensorProperty
newValue SensorProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SensorProperty -> ()
allowedValues :: SensorProperty -> Maybe (ValueList Text)
dataType :: SensorProperty -> Value Text
description :: SensorProperty -> Maybe (Value Text)
fullyQualifiedName :: SensorProperty -> Value Text
max :: SensorProperty -> Maybe (Value Double)
min :: SensorProperty -> Maybe (Value Double)
unit :: SensorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
unit :: Maybe (Value Text)
..}
= SensorProperty {unit :: Maybe (Value Text)
unit = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Unit" SensorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
haddock_workaround_ :: ()
allowedValues :: Maybe (ValueList Text)
dataType :: Value Text
description :: Maybe (Value Text)
fullyQualifiedName :: Value Text
max :: Maybe (Value Double)
min :: Maybe (Value Double)
..}