module Stratosphere.QuickSight.Dashboard.FontConfigurationProperty (
module Exports, FontConfigurationProperty(..),
mkFontConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.FontSizeProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Dashboard.FontWeightProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data FontConfigurationProperty
=
FontConfigurationProperty {FontConfigurationProperty -> ()
haddock_workaround_ :: (),
FontConfigurationProperty -> Maybe (Value Text)
fontColor :: (Prelude.Maybe (Value Prelude.Text)),
FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: (Prelude.Maybe (Value Prelude.Text)),
FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: (Prelude.Maybe (Value Prelude.Text)),
FontConfigurationProperty -> Maybe FontSizeProperty
fontSize :: (Prelude.Maybe FontSizeProperty),
FontConfigurationProperty -> Maybe (Value Text)
fontStyle :: (Prelude.Maybe (Value Prelude.Text)),
FontConfigurationProperty -> Maybe FontWeightProperty
fontWeight :: (Prelude.Maybe FontWeightProperty)}
deriving stock (FontConfigurationProperty -> FontConfigurationProperty -> Bool
(FontConfigurationProperty -> FontConfigurationProperty -> Bool)
-> (FontConfigurationProperty -> FontConfigurationProperty -> Bool)
-> Eq FontConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FontConfigurationProperty -> FontConfigurationProperty -> Bool
== :: FontConfigurationProperty -> FontConfigurationProperty -> Bool
$c/= :: FontConfigurationProperty -> FontConfigurationProperty -> Bool
/= :: FontConfigurationProperty -> FontConfigurationProperty -> Bool
Prelude.Eq, Int -> FontConfigurationProperty -> ShowS
[FontConfigurationProperty] -> ShowS
FontConfigurationProperty -> String
(Int -> FontConfigurationProperty -> ShowS)
-> (FontConfigurationProperty -> String)
-> ([FontConfigurationProperty] -> ShowS)
-> Show FontConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FontConfigurationProperty -> ShowS
showsPrec :: Int -> FontConfigurationProperty -> ShowS
$cshow :: FontConfigurationProperty -> String
show :: FontConfigurationProperty -> String
$cshowList :: [FontConfigurationProperty] -> ShowS
showList :: [FontConfigurationProperty] -> ShowS
Prelude.Show)
mkFontConfigurationProperty :: FontConfigurationProperty
mkFontConfigurationProperty :: FontConfigurationProperty
mkFontConfigurationProperty
= FontConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), fontColor :: Maybe (Value Text)
fontColor = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fontDecoration :: Maybe (Value Text)
fontDecoration = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, fontFamily :: Maybe (Value Text)
fontFamily = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fontSize :: Maybe FontSizeProperty
fontSize = Maybe FontSizeProperty
forall a. Maybe a
Prelude.Nothing, fontStyle :: Maybe (Value Text)
fontStyle = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fontWeight :: Maybe FontWeightProperty
fontWeight = Maybe FontWeightProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FontConfigurationProperty where
toResourceProperties :: FontConfigurationProperty -> ResourceProperties
toResourceProperties FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Dashboard.FontConfiguration",
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
"FontColor" (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)
fontColor,
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
"FontDecoration" (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)
fontDecoration,
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
"FontFamily" (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)
fontFamily,
Key -> FontSizeProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FontSize" (FontSizeProperty -> (Key, Value))
-> Maybe FontSizeProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontSizeProperty
fontSize,
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
"FontStyle" (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)
fontStyle,
Key -> FontWeightProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FontWeight" (FontWeightProperty -> (Key, Value))
-> Maybe FontWeightProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontWeightProperty
fontWeight])}
instance JSON.ToJSON FontConfigurationProperty where
toJSON :: FontConfigurationProperty -> Value
toJSON FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= [(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
"FontColor" (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)
fontColor,
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
"FontDecoration" (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)
fontDecoration,
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
"FontFamily" (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)
fontFamily,
Key -> FontSizeProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FontSize" (FontSizeProperty -> (Key, Value))
-> Maybe FontSizeProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontSizeProperty
fontSize,
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
"FontStyle" (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)
fontStyle,
Key -> FontWeightProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FontWeight" (FontWeightProperty -> (Key, Value))
-> Maybe FontWeightProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FontWeightProperty
fontWeight]))
instance Property "FontColor" FontConfigurationProperty where
type PropertyType "FontColor" FontConfigurationProperty = Value Prelude.Text
set :: PropertyType "FontColor" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontColor" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty {fontColor :: Maybe (Value Text)
fontColor = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontColor" FontConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: ()
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
haddock_workaround_ :: ()
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
instance Property "FontDecoration" FontConfigurationProperty where
type PropertyType "FontDecoration" FontConfigurationProperty = Value Prelude.Text
set :: PropertyType "FontDecoration" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontDecoration" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty
{fontDecoration :: Maybe (Value Text)
fontDecoration = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontDecoration" FontConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
instance Property "FontFamily" FontConfigurationProperty where
type PropertyType "FontFamily" FontConfigurationProperty = Value Prelude.Text
set :: PropertyType "FontFamily" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontFamily" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty
{fontFamily :: Maybe (Value Text)
fontFamily = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontFamily" FontConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
instance Property "FontSize" FontConfigurationProperty where
type PropertyType "FontSize" FontConfigurationProperty = FontSizeProperty
set :: PropertyType "FontSize" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontSize" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty {fontSize :: Maybe FontSizeProperty
fontSize = FontSizeProperty -> Maybe FontSizeProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontSize" FontConfigurationProperty
FontSizeProperty
newValue, Maybe (Value Text)
Maybe FontWeightProperty
()
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
instance Property "FontStyle" FontConfigurationProperty where
type PropertyType "FontStyle" FontConfigurationProperty = Value Prelude.Text
set :: PropertyType "FontStyle" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontStyle" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty {fontStyle :: Maybe (Value Text)
fontStyle = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontStyle" FontConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontWeight :: Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontWeight :: Maybe FontWeightProperty
..}
instance Property "FontWeight" FontConfigurationProperty where
type PropertyType "FontWeight" FontConfigurationProperty = FontWeightProperty
set :: PropertyType "FontWeight" FontConfigurationProperty
-> FontConfigurationProperty -> FontConfigurationProperty
set PropertyType "FontWeight" FontConfigurationProperty
newValue FontConfigurationProperty {Maybe (Value Text)
Maybe FontSizeProperty
Maybe FontWeightProperty
()
haddock_workaround_ :: FontConfigurationProperty -> ()
fontColor :: FontConfigurationProperty -> Maybe (Value Text)
fontDecoration :: FontConfigurationProperty -> Maybe (Value Text)
fontFamily :: FontConfigurationProperty -> Maybe (Value Text)
fontSize :: FontConfigurationProperty -> Maybe FontSizeProperty
fontStyle :: FontConfigurationProperty -> Maybe (Value Text)
fontWeight :: FontConfigurationProperty -> Maybe FontWeightProperty
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
fontWeight :: Maybe FontWeightProperty
..}
= FontConfigurationProperty
{fontWeight :: Maybe FontWeightProperty
fontWeight = FontWeightProperty -> Maybe FontWeightProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FontWeight" FontConfigurationProperty
FontWeightProperty
newValue, Maybe (Value Text)
Maybe FontSizeProperty
()
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
haddock_workaround_ :: ()
fontColor :: Maybe (Value Text)
fontDecoration :: Maybe (Value Text)
fontFamily :: Maybe (Value Text)
fontSize :: Maybe FontSizeProperty
fontStyle :: Maybe (Value Text)
..}