module Stratosphere.QuickSight.Topic.SemanticTypeProperty (
SemanticTypeProperty(..), mkSemanticTypeProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SemanticTypeProperty
=
SemanticTypeProperty {SemanticTypeProperty -> ()
haddock_workaround_ :: (),
SemanticTypeProperty -> Maybe (Value Text)
falseyCellValue :: (Prelude.Maybe (Value Prelude.Text)),
SemanticTypeProperty -> Maybe (ValueList Text)
falseyCellValueSynonyms :: (Prelude.Maybe (ValueList Prelude.Text)),
SemanticTypeProperty -> Maybe (Value Text)
subTypeName :: (Prelude.Maybe (Value Prelude.Text)),
SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: (Prelude.Maybe (Value Prelude.Text)),
SemanticTypeProperty -> Maybe (ValueList Text)
truthyCellValueSynonyms :: (Prelude.Maybe (ValueList Prelude.Text)),
SemanticTypeProperty -> Maybe (Value Text)
typeName :: (Prelude.Maybe (Value Prelude.Text)),
SemanticTypeProperty -> Maybe (Map Text (Value Text))
typeParameters :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
deriving stock (SemanticTypeProperty -> SemanticTypeProperty -> Bool
(SemanticTypeProperty -> SemanticTypeProperty -> Bool)
-> (SemanticTypeProperty -> SemanticTypeProperty -> Bool)
-> Eq SemanticTypeProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SemanticTypeProperty -> SemanticTypeProperty -> Bool
== :: SemanticTypeProperty -> SemanticTypeProperty -> Bool
$c/= :: SemanticTypeProperty -> SemanticTypeProperty -> Bool
/= :: SemanticTypeProperty -> SemanticTypeProperty -> Bool
Prelude.Eq, Int -> SemanticTypeProperty -> ShowS
[SemanticTypeProperty] -> ShowS
SemanticTypeProperty -> String
(Int -> SemanticTypeProperty -> ShowS)
-> (SemanticTypeProperty -> String)
-> ([SemanticTypeProperty] -> ShowS)
-> Show SemanticTypeProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SemanticTypeProperty -> ShowS
showsPrec :: Int -> SemanticTypeProperty -> ShowS
$cshow :: SemanticTypeProperty -> String
show :: SemanticTypeProperty -> String
$cshowList :: [SemanticTypeProperty] -> ShowS
showList :: [SemanticTypeProperty] -> ShowS
Prelude.Show)
mkSemanticTypeProperty :: SemanticTypeProperty
mkSemanticTypeProperty :: SemanticTypeProperty
mkSemanticTypeProperty
= SemanticTypeProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), falseyCellValue :: Maybe (Value Text)
falseyCellValue = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
falseyCellValueSynonyms :: Maybe (ValueList Text)
falseyCellValueSynonyms = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
subTypeName :: Maybe (Value Text)
subTypeName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, truthyCellValue :: Maybe (Value Text)
truthyCellValue = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
truthyCellValueSynonyms :: Maybe (ValueList Text)
truthyCellValueSynonyms = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
typeName :: Maybe (Value Text)
typeName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, typeParameters :: Maybe (Map Text (Value Text))
typeParameters = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SemanticTypeProperty where
toResourceProperties :: SemanticTypeProperty -> ResourceProperties
toResourceProperties SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Topic.SemanticType",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"FalseyCellValue" (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)
falseyCellValue,
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
"FalseyCellValueSynonyms"
(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)
falseyCellValueSynonyms,
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
"SubTypeName" (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)
subTypeName,
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
"TruthyCellValue" (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)
truthyCellValue,
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
"TruthyCellValueSynonyms"
(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)
truthyCellValueSynonyms,
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
"TypeName" (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)
typeName,
Key -> Map Text (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
"TypeParameters" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
typeParameters])}
instance JSON.ToJSON SemanticTypeProperty where
toJSON :: SemanticTypeProperty -> Value
toJSON SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"FalseyCellValue" (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)
falseyCellValue,
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
"FalseyCellValueSynonyms"
(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)
falseyCellValueSynonyms,
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
"SubTypeName" (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)
subTypeName,
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
"TruthyCellValue" (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)
truthyCellValue,
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
"TruthyCellValueSynonyms"
(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)
truthyCellValueSynonyms,
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
"TypeName" (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)
typeName,
Key -> Map Text (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
"TypeParameters" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
typeParameters]))
instance Property "FalseyCellValue" SemanticTypeProperty where
type PropertyType "FalseyCellValue" SemanticTypeProperty = Value Prelude.Text
set :: PropertyType "FalseyCellValue" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "FalseyCellValue" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty
{falseyCellValue :: Maybe (Value Text)
falseyCellValue = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FalseyCellValue" SemanticTypeProperty
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "FalseyCellValueSynonyms" SemanticTypeProperty where
type PropertyType "FalseyCellValueSynonyms" SemanticTypeProperty = ValueList Prelude.Text
set :: PropertyType "FalseyCellValueSynonyms" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "FalseyCellValueSynonyms" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty
{falseyCellValueSynonyms :: Maybe (ValueList Text)
falseyCellValueSynonyms = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FalseyCellValueSynonyms" SemanticTypeProperty
ValueList Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "SubTypeName" SemanticTypeProperty where
type PropertyType "SubTypeName" SemanticTypeProperty = Value Prelude.Text
set :: PropertyType "SubTypeName" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "SubTypeName" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty {subTypeName :: Maybe (Value Text)
subTypeName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SubTypeName" SemanticTypeProperty
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "TruthyCellValue" SemanticTypeProperty where
type PropertyType "TruthyCellValue" SemanticTypeProperty = Value Prelude.Text
set :: PropertyType "TruthyCellValue" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "TruthyCellValue" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty
{truthyCellValue :: Maybe (Value Text)
truthyCellValue = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TruthyCellValue" SemanticTypeProperty
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "TruthyCellValueSynonyms" SemanticTypeProperty where
type PropertyType "TruthyCellValueSynonyms" SemanticTypeProperty = ValueList Prelude.Text
set :: PropertyType "TruthyCellValueSynonyms" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "TruthyCellValueSynonyms" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty
{truthyCellValueSynonyms :: Maybe (ValueList Text)
truthyCellValueSynonyms = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TruthyCellValueSynonyms" SemanticTypeProperty
ValueList Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "TypeName" SemanticTypeProperty where
type PropertyType "TypeName" SemanticTypeProperty = Value Prelude.Text
set :: PropertyType "TypeName" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "TypeName" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty {typeName :: Maybe (Value Text)
typeName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TypeName" SemanticTypeProperty
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeParameters :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
instance Property "TypeParameters" SemanticTypeProperty where
type PropertyType "TypeParameters" SemanticTypeProperty = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "TypeParameters" SemanticTypeProperty
-> SemanticTypeProperty -> SemanticTypeProperty
set PropertyType "TypeParameters" SemanticTypeProperty
newValue SemanticTypeProperty {Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: SemanticTypeProperty -> ()
falseyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
falseyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
subTypeName :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValue :: SemanticTypeProperty -> Maybe (Value Text)
truthyCellValueSynonyms :: SemanticTypeProperty -> Maybe (ValueList Text)
typeName :: SemanticTypeProperty -> Maybe (Value Text)
typeParameters :: SemanticTypeProperty -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
typeParameters :: Maybe (Map Text (Value Text))
..}
= SemanticTypeProperty {typeParameters :: Maybe (Map Text (Value Text))
typeParameters = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "TypeParameters" SemanticTypeProperty
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
haddock_workaround_ :: ()
falseyCellValue :: Maybe (Value Text)
falseyCellValueSynonyms :: Maybe (ValueList Text)
subTypeName :: Maybe (Value Text)
truthyCellValue :: Maybe (Value Text)
truthyCellValueSynonyms :: Maybe (ValueList Text)
typeName :: Maybe (Value Text)
..}