module Stratosphere.QuickSight.Analysis.FunnelChartVisualProperty (
module Exports, FunnelChartVisualProperty(..),
mkFunnelChartVisualProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.ColumnHierarchyProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.FunnelChartConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualCustomActionProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualSubtitleLabelOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.VisualTitleLabelOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data FunnelChartVisualProperty
=
FunnelChartVisualProperty {FunnelChartVisualProperty -> ()
haddock_workaround_ :: (),
FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
actions :: (Prelude.Maybe [VisualCustomActionProperty]),
FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
chartConfiguration :: (Prelude.Maybe FunnelChartConfigurationProperty),
FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
columnHierarchies :: (Prelude.Maybe [ColumnHierarchyProperty]),
FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
subtitle :: (Prelude.Maybe VisualSubtitleLabelOptionsProperty),
FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
title :: (Prelude.Maybe VisualTitleLabelOptionsProperty),
FunnelChartVisualProperty -> Maybe (Value Text)
visualContentAltText :: (Prelude.Maybe (Value Prelude.Text)),
FunnelChartVisualProperty -> Value Text
visualId :: (Value Prelude.Text)}
deriving stock (FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool
(FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool)
-> (FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool)
-> Eq FunnelChartVisualProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool
== :: FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool
$c/= :: FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool
/= :: FunnelChartVisualProperty -> FunnelChartVisualProperty -> Bool
Prelude.Eq, Int -> FunnelChartVisualProperty -> ShowS
[FunnelChartVisualProperty] -> ShowS
FunnelChartVisualProperty -> String
(Int -> FunnelChartVisualProperty -> ShowS)
-> (FunnelChartVisualProperty -> String)
-> ([FunnelChartVisualProperty] -> ShowS)
-> Show FunnelChartVisualProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FunnelChartVisualProperty -> ShowS
showsPrec :: Int -> FunnelChartVisualProperty -> ShowS
$cshow :: FunnelChartVisualProperty -> String
show :: FunnelChartVisualProperty -> String
$cshowList :: [FunnelChartVisualProperty] -> ShowS
showList :: [FunnelChartVisualProperty] -> ShowS
Prelude.Show)
mkFunnelChartVisualProperty ::
Value Prelude.Text -> FunnelChartVisualProperty
mkFunnelChartVisualProperty :: Value Text -> FunnelChartVisualProperty
mkFunnelChartVisualProperty Value Text
visualId
= FunnelChartVisualProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), visualId :: Value Text
visualId = Value Text
visualId,
actions :: Maybe [VisualCustomActionProperty]
actions = Maybe [VisualCustomActionProperty]
forall a. Maybe a
Prelude.Nothing, chartConfiguration :: Maybe FunnelChartConfigurationProperty
chartConfiguration = Maybe FunnelChartConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = Maybe [ColumnHierarchyProperty]
forall a. Maybe a
Prelude.Nothing, subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = Maybe VisualSubtitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing,
title :: Maybe VisualTitleLabelOptionsProperty
title = Maybe VisualTitleLabelOptionsProperty
forall a. Maybe a
Prelude.Nothing, visualContentAltText :: Maybe (Value Text)
visualContentAltText = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FunnelChartVisualProperty where
toResourceProperties :: FunnelChartVisualProperty -> ResourceProperties
toResourceProperties FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.FunnelChartVisual",
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
"VisualId" 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
visualId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [VisualCustomActionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Actions" ([VisualCustomActionProperty] -> (Key, Value))
-> Maybe [VisualCustomActionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [VisualCustomActionProperty]
actions,
Key -> FunnelChartConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChartConfiguration" (FunnelChartConfigurationProperty -> (Key, Value))
-> Maybe FunnelChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FunnelChartConfigurationProperty
chartConfiguration,
Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
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
"VisualContentAltText"
(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)
visualContentAltText]))}
instance JSON.ToJSON FunnelChartVisualProperty where
toJSON :: FunnelChartVisualProperty -> Value
toJSON FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: 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
"VisualId" 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
visualId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [VisualCustomActionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Actions" ([VisualCustomActionProperty] -> (Key, Value))
-> Maybe [VisualCustomActionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [VisualCustomActionProperty]
actions,
Key -> FunnelChartConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ChartConfiguration" (FunnelChartConfigurationProperty -> (Key, Value))
-> Maybe FunnelChartConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FunnelChartConfigurationProperty
chartConfiguration,
Key -> [ColumnHierarchyProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ColumnHierarchies" ([ColumnHierarchyProperty] -> (Key, Value))
-> Maybe [ColumnHierarchyProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ColumnHierarchyProperty]
columnHierarchies,
Key -> VisualSubtitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Subtitle" (VisualSubtitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualSubtitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualSubtitleLabelOptionsProperty
subtitle,
Key -> VisualTitleLabelOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Title" (VisualTitleLabelOptionsProperty -> (Key, Value))
-> Maybe VisualTitleLabelOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VisualTitleLabelOptionsProperty
title,
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
"VisualContentAltText"
(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)
visualContentAltText])))
instance Property "Actions" FunnelChartVisualProperty where
type PropertyType "Actions" FunnelChartVisualProperty = [VisualCustomActionProperty]
set :: PropertyType "Actions" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "Actions" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty {actions :: Maybe [VisualCustomActionProperty]
actions = [VisualCustomActionProperty] -> Maybe [VisualCustomActionProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [VisualCustomActionProperty]
PropertyType "Actions" FunnelChartVisualProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ChartConfiguration" FunnelChartVisualProperty where
type PropertyType "ChartConfiguration" FunnelChartVisualProperty = FunnelChartConfigurationProperty
set :: PropertyType "ChartConfiguration" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "ChartConfiguration" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty
{chartConfiguration :: Maybe FunnelChartConfigurationProperty
chartConfiguration = FunnelChartConfigurationProperty
-> Maybe FunnelChartConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChartConfiguration" FunnelChartVisualProperty
FunnelChartConfigurationProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "ColumnHierarchies" FunnelChartVisualProperty where
type PropertyType "ColumnHierarchies" FunnelChartVisualProperty = [ColumnHierarchyProperty]
set :: PropertyType "ColumnHierarchies" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "ColumnHierarchies" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty
{columnHierarchies :: Maybe [ColumnHierarchyProperty]
columnHierarchies = [ColumnHierarchyProperty] -> Maybe [ColumnHierarchyProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ColumnHierarchyProperty]
PropertyType "ColumnHierarchies" FunnelChartVisualProperty
newValue, Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Subtitle" FunnelChartVisualProperty where
type PropertyType "Subtitle" FunnelChartVisualProperty = VisualSubtitleLabelOptionsProperty
set :: PropertyType "Subtitle" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "Subtitle" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty {subtitle :: Maybe VisualSubtitleLabelOptionsProperty
subtitle = VisualSubtitleLabelOptionsProperty
-> Maybe VisualSubtitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" FunnelChartVisualProperty
VisualSubtitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "Title" FunnelChartVisualProperty where
type PropertyType "Title" FunnelChartVisualProperty = VisualTitleLabelOptionsProperty
set :: PropertyType "Title" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "Title" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty {title :: Maybe VisualTitleLabelOptionsProperty
title = VisualTitleLabelOptionsProperty
-> Maybe VisualTitleLabelOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" FunnelChartVisualProperty
VisualTitleLabelOptionsProperty
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
instance Property "VisualContentAltText" FunnelChartVisualProperty where
type PropertyType "VisualContentAltText" FunnelChartVisualProperty = Value Prelude.Text
set :: PropertyType "VisualContentAltText" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "VisualContentAltText" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty
{visualContentAltText :: Maybe (Value Text)
visualContentAltText = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VisualContentAltText" FunnelChartVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualId :: Value Text
..}
instance Property "VisualId" FunnelChartVisualProperty where
type PropertyType "VisualId" FunnelChartVisualProperty = Value Prelude.Text
set :: PropertyType "VisualId" FunnelChartVisualProperty
-> FunnelChartVisualProperty -> FunnelChartVisualProperty
set PropertyType "VisualId" FunnelChartVisualProperty
newValue FunnelChartVisualProperty {Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
Value Text
haddock_workaround_ :: FunnelChartVisualProperty -> ()
actions :: FunnelChartVisualProperty -> Maybe [VisualCustomActionProperty]
chartConfiguration :: FunnelChartVisualProperty -> Maybe FunnelChartConfigurationProperty
columnHierarchies :: FunnelChartVisualProperty -> Maybe [ColumnHierarchyProperty]
subtitle :: FunnelChartVisualProperty
-> Maybe VisualSubtitleLabelOptionsProperty
title :: FunnelChartVisualProperty -> Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: FunnelChartVisualProperty -> Maybe (Value Text)
visualId :: FunnelChartVisualProperty -> Value Text
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
visualId :: Value Text
..}
= FunnelChartVisualProperty {visualId :: Value Text
visualId = PropertyType "VisualId" FunnelChartVisualProperty
Value Text
newValue, Maybe [ColumnHierarchyProperty]
Maybe [VisualCustomActionProperty]
Maybe (Value Text)
Maybe FunnelChartConfigurationProperty
Maybe VisualSubtitleLabelOptionsProperty
Maybe VisualTitleLabelOptionsProperty
()
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
haddock_workaround_ :: ()
actions :: Maybe [VisualCustomActionProperty]
chartConfiguration :: Maybe FunnelChartConfigurationProperty
columnHierarchies :: Maybe [ColumnHierarchyProperty]
subtitle :: Maybe VisualSubtitleLabelOptionsProperty
title :: Maybe VisualTitleLabelOptionsProperty
visualContentAltText :: Maybe (Value Text)
..}