module Stratosphere.IoTFleetWise.DecoderManifest.SignalDecodersItemsProperty (
module Exports, SignalDecodersItemsProperty(..),
mkSignalDecodersItemsProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.IoTFleetWise.DecoderManifest.CanSignalProperty as Exports
import {-# SOURCE #-} Stratosphere.IoTFleetWise.DecoderManifest.CustomDecodingSignalProperty as Exports
import {-# SOURCE #-} Stratosphere.IoTFleetWise.DecoderManifest.ObdSignalProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SignalDecodersItemsProperty
=
SignalDecodersItemsProperty {SignalDecodersItemsProperty -> ()
haddock_workaround_ :: (),
SignalDecodersItemsProperty -> Maybe CanSignalProperty
canSignal :: (Prelude.Maybe CanSignalProperty),
SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
customDecodingSignal :: (Prelude.Maybe CustomDecodingSignalProperty),
SignalDecodersItemsProperty -> Value Text
fullyQualifiedName :: (Value Prelude.Text),
SignalDecodersItemsProperty -> Value Text
interfaceId :: (Value Prelude.Text),
SignalDecodersItemsProperty -> Maybe ObdSignalProperty
obdSignal :: (Prelude.Maybe ObdSignalProperty),
SignalDecodersItemsProperty -> Value Text
type' :: (Value Prelude.Text)}
deriving stock (SignalDecodersItemsProperty -> SignalDecodersItemsProperty -> Bool
(SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> Bool)
-> (SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> Bool)
-> Eq SignalDecodersItemsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SignalDecodersItemsProperty -> SignalDecodersItemsProperty -> Bool
== :: SignalDecodersItemsProperty -> SignalDecodersItemsProperty -> Bool
$c/= :: SignalDecodersItemsProperty -> SignalDecodersItemsProperty -> Bool
/= :: SignalDecodersItemsProperty -> SignalDecodersItemsProperty -> Bool
Prelude.Eq, Int -> SignalDecodersItemsProperty -> ShowS
[SignalDecodersItemsProperty] -> ShowS
SignalDecodersItemsProperty -> String
(Int -> SignalDecodersItemsProperty -> ShowS)
-> (SignalDecodersItemsProperty -> String)
-> ([SignalDecodersItemsProperty] -> ShowS)
-> Show SignalDecodersItemsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SignalDecodersItemsProperty -> ShowS
showsPrec :: Int -> SignalDecodersItemsProperty -> ShowS
$cshow :: SignalDecodersItemsProperty -> String
show :: SignalDecodersItemsProperty -> String
$cshowList :: [SignalDecodersItemsProperty] -> ShowS
showList :: [SignalDecodersItemsProperty] -> ShowS
Prelude.Show)
mkSignalDecodersItemsProperty ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> SignalDecodersItemsProperty
mkSignalDecodersItemsProperty :: Value Text
-> Value Text -> Value Text -> SignalDecodersItemsProperty
mkSignalDecodersItemsProperty Value Text
fullyQualifiedName Value Text
interfaceId Value Text
type'
= SignalDecodersItemsProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), fullyQualifiedName :: Value Text
fullyQualifiedName = Value Text
fullyQualifiedName,
interfaceId :: Value Text
interfaceId = Value Text
interfaceId, type' :: Value Text
type' = Value Text
type',
canSignal :: Maybe CanSignalProperty
canSignal = Maybe CanSignalProperty
forall a. Maybe a
Prelude.Nothing,
customDecodingSignal :: Maybe CustomDecodingSignalProperty
customDecodingSignal = Maybe CustomDecodingSignalProperty
forall a. Maybe a
Prelude.Nothing,
obdSignal :: Maybe ObdSignalProperty
obdSignal = Maybe ObdSignalProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SignalDecodersItemsProperty where
toResourceProperties :: SignalDecodersItemsProperty -> ResourceProperties
toResourceProperties SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::IoTFleetWise::DecoderManifest.SignalDecodersItems",
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
"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,
Key
"InterfaceId" 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
interfaceId, Key
"Type" 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
type']
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> CanSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CanSignal" (CanSignalProperty -> (Key, Value))
-> Maybe CanSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CanSignalProperty
canSignal,
Key -> CustomDecodingSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomDecodingSignal" (CustomDecodingSignalProperty -> (Key, Value))
-> Maybe CustomDecodingSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomDecodingSignalProperty
customDecodingSignal,
Key -> ObdSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ObdSignal" (ObdSignalProperty -> (Key, Value))
-> Maybe ObdSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ObdSignalProperty
obdSignal]))}
instance JSON.ToJSON SignalDecodersItemsProperty where
toJSON :: SignalDecodersItemsProperty -> Value
toJSON SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: 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
"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,
Key
"InterfaceId" 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
interfaceId, Key
"Type" 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
type']
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> CanSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CanSignal" (CanSignalProperty -> (Key, Value))
-> Maybe CanSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CanSignalProperty
canSignal,
Key -> CustomDecodingSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomDecodingSignal" (CustomDecodingSignalProperty -> (Key, Value))
-> Maybe CustomDecodingSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomDecodingSignalProperty
customDecodingSignal,
Key -> ObdSignalProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ObdSignal" (ObdSignalProperty -> (Key, Value))
-> Maybe ObdSignalProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ObdSignalProperty
obdSignal])))
instance Property "CanSignal" SignalDecodersItemsProperty where
type PropertyType "CanSignal" SignalDecodersItemsProperty = CanSignalProperty
set :: PropertyType "CanSignal" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "CanSignal" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty
{canSignal :: Maybe CanSignalProperty
canSignal = CanSignalProperty -> Maybe CanSignalProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CanSignal" SignalDecodersItemsProperty
CanSignalProperty
newValue, Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: ()
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
haddock_workaround_ :: ()
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
instance Property "CustomDecodingSignal" SignalDecodersItemsProperty where
type PropertyType "CustomDecodingSignal" SignalDecodersItemsProperty = CustomDecodingSignalProperty
set :: PropertyType "CustomDecodingSignal" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "CustomDecodingSignal" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty
{customDecodingSignal :: Maybe CustomDecodingSignalProperty
customDecodingSignal = CustomDecodingSignalProperty -> Maybe CustomDecodingSignalProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomDecodingSignal" SignalDecodersItemsProperty
CustomDecodingSignalProperty
newValue, Maybe CanSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
instance Property "FullyQualifiedName" SignalDecodersItemsProperty where
type PropertyType "FullyQualifiedName" SignalDecodersItemsProperty = Value Prelude.Text
set :: PropertyType "FullyQualifiedName" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "FullyQualifiedName" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty {fullyQualifiedName :: Value Text
fullyQualifiedName = PropertyType "FullyQualifiedName" SignalDecodersItemsProperty
Value Text
newValue, Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
instance Property "InterfaceId" SignalDecodersItemsProperty where
type PropertyType "InterfaceId" SignalDecodersItemsProperty = Value Prelude.Text
set :: PropertyType "InterfaceId" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "InterfaceId" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty {interfaceId :: Value Text
interfaceId = PropertyType "InterfaceId" SignalDecodersItemsProperty
Value Text
newValue, Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
instance Property "ObdSignal" SignalDecodersItemsProperty where
type PropertyType "ObdSignal" SignalDecodersItemsProperty = ObdSignalProperty
set :: PropertyType "ObdSignal" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "ObdSignal" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty
{obdSignal :: Maybe ObdSignalProperty
obdSignal = ObdSignalProperty -> Maybe ObdSignalProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ObdSignal" SignalDecodersItemsProperty
ObdSignalProperty
newValue, Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
()
Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
type' :: Value Text
..}
instance Property "Type" SignalDecodersItemsProperty where
type PropertyType "Type" SignalDecodersItemsProperty = Value Prelude.Text
set :: PropertyType "Type" SignalDecodersItemsProperty
-> SignalDecodersItemsProperty -> SignalDecodersItemsProperty
set PropertyType "Type" SignalDecodersItemsProperty
newValue SignalDecodersItemsProperty {Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: SignalDecodersItemsProperty -> ()
canSignal :: SignalDecodersItemsProperty -> Maybe CanSignalProperty
customDecodingSignal :: SignalDecodersItemsProperty -> Maybe CustomDecodingSignalProperty
fullyQualifiedName :: SignalDecodersItemsProperty -> Value Text
interfaceId :: SignalDecodersItemsProperty -> Value Text
obdSignal :: SignalDecodersItemsProperty -> Maybe ObdSignalProperty
type' :: SignalDecodersItemsProperty -> Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
type' :: Value Text
..}
= SignalDecodersItemsProperty {type' :: Value Text
type' = PropertyType "Type" SignalDecodersItemsProperty
Value Text
newValue, Maybe CanSignalProperty
Maybe CustomDecodingSignalProperty
Maybe ObdSignalProperty
()
Value Text
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
haddock_workaround_ :: ()
canSignal :: Maybe CanSignalProperty
customDecodingSignal :: Maybe CustomDecodingSignalProperty
fullyQualifiedName :: Value Text
interfaceId :: Value Text
obdSignal :: Maybe ObdSignalProperty
..}