module Stratosphere.QuickSight.Analysis.NumberDisplayFormatConfigurationProperty (
module Exports, NumberDisplayFormatConfigurationProperty(..),
mkNumberDisplayFormatConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.DecimalPlacesConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.NegativeValueConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.NullValueFormatConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.NumericSeparatorConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data NumberDisplayFormatConfigurationProperty
=
NumberDisplayFormatConfigurationProperty {NumberDisplayFormatConfigurationProperty -> ()
haddock_workaround_ :: (),
NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
decimalPlacesConfiguration :: (Prelude.Maybe DecimalPlacesConfigurationProperty),
NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
negativeValueConfiguration :: (Prelude.Maybe NegativeValueConfigurationProperty),
NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
nullValueFormatConfiguration :: (Prelude.Maybe NullValueFormatConfigurationProperty),
NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
numberScale :: (Prelude.Maybe (Value Prelude.Text)),
NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: (Prelude.Maybe (Value Prelude.Text)),
NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
separatorConfiguration :: (Prelude.Maybe NumericSeparatorConfigurationProperty),
NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
suffix :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool
(NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool)
-> (NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool)
-> Eq NumberDisplayFormatConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool
== :: NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool
$c/= :: NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool
/= :: NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty -> Bool
Prelude.Eq, Int -> NumberDisplayFormatConfigurationProperty -> ShowS
[NumberDisplayFormatConfigurationProperty] -> ShowS
NumberDisplayFormatConfigurationProperty -> String
(Int -> NumberDisplayFormatConfigurationProperty -> ShowS)
-> (NumberDisplayFormatConfigurationProperty -> String)
-> ([NumberDisplayFormatConfigurationProperty] -> ShowS)
-> Show NumberDisplayFormatConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> NumberDisplayFormatConfigurationProperty -> ShowS
showsPrec :: Int -> NumberDisplayFormatConfigurationProperty -> ShowS
$cshow :: NumberDisplayFormatConfigurationProperty -> String
show :: NumberDisplayFormatConfigurationProperty -> String
$cshowList :: [NumberDisplayFormatConfigurationProperty] -> ShowS
showList :: [NumberDisplayFormatConfigurationProperty] -> ShowS
Prelude.Show)
mkNumberDisplayFormatConfigurationProperty ::
NumberDisplayFormatConfigurationProperty
mkNumberDisplayFormatConfigurationProperty :: NumberDisplayFormatConfigurationProperty
mkNumberDisplayFormatConfigurationProperty
= NumberDisplayFormatConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
decimalPlacesConfiguration = Maybe DecimalPlacesConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
negativeValueConfiguration = Maybe NegativeValueConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
nullValueFormatConfiguration = Maybe NullValueFormatConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
numberScale :: Maybe (Value Text)
numberScale = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, prefix :: Maybe (Value Text)
prefix = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
separatorConfiguration = Maybe NumericSeparatorConfigurationProperty
forall a. Maybe a
Prelude.Nothing, suffix :: Maybe (Value Text)
suffix = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties NumberDisplayFormatConfigurationProperty where
toResourceProperties :: NumberDisplayFormatConfigurationProperty -> ResourceProperties
toResourceProperties NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.NumberDisplayFormatConfiguration",
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 -> DecimalPlacesConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DecimalPlacesConfiguration"
(DecimalPlacesConfigurationProperty -> (Key, Value))
-> Maybe DecimalPlacesConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DecimalPlacesConfigurationProperty
decimalPlacesConfiguration,
Key -> NegativeValueConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NegativeValueConfiguration"
(NegativeValueConfigurationProperty -> (Key, Value))
-> Maybe NegativeValueConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NegativeValueConfigurationProperty
negativeValueConfiguration,
Key -> NullValueFormatConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NullValueFormatConfiguration"
(NullValueFormatConfigurationProperty -> (Key, Value))
-> Maybe NullValueFormatConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NullValueFormatConfigurationProperty
nullValueFormatConfiguration,
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
"NumberScale" (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)
numberScale,
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
"Prefix" (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)
prefix,
Key -> NumericSeparatorConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SeparatorConfiguration"
(NumericSeparatorConfigurationProperty -> (Key, Value))
-> Maybe NumericSeparatorConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NumericSeparatorConfigurationProperty
separatorConfiguration,
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
"Suffix" (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)
suffix])}
instance JSON.ToJSON NumberDisplayFormatConfigurationProperty where
toJSON :: NumberDisplayFormatConfigurationProperty -> Value
toJSON NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (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 -> DecimalPlacesConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DecimalPlacesConfiguration"
(DecimalPlacesConfigurationProperty -> (Key, Value))
-> Maybe DecimalPlacesConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DecimalPlacesConfigurationProperty
decimalPlacesConfiguration,
Key -> NegativeValueConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NegativeValueConfiguration"
(NegativeValueConfigurationProperty -> (Key, Value))
-> Maybe NegativeValueConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NegativeValueConfigurationProperty
negativeValueConfiguration,
Key -> NullValueFormatConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NullValueFormatConfiguration"
(NullValueFormatConfigurationProperty -> (Key, Value))
-> Maybe NullValueFormatConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NullValueFormatConfigurationProperty
nullValueFormatConfiguration,
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
"NumberScale" (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)
numberScale,
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
"Prefix" (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)
prefix,
Key -> NumericSeparatorConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SeparatorConfiguration"
(NumericSeparatorConfigurationProperty -> (Key, Value))
-> Maybe NumericSeparatorConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NumericSeparatorConfigurationProperty
separatorConfiguration,
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
"Suffix" (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)
suffix]))
instance Property "DecimalPlacesConfiguration" NumberDisplayFormatConfigurationProperty where
type PropertyType "DecimalPlacesConfiguration" NumberDisplayFormatConfigurationProperty = DecimalPlacesConfigurationProperty
set :: PropertyType
"DecimalPlacesConfiguration"
NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType
"DecimalPlacesConfiguration"
NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
decimalPlacesConfiguration = DecimalPlacesConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"DecimalPlacesConfiguration"
NumberDisplayFormatConfigurationProperty
DecimalPlacesConfigurationProperty
newValue, Maybe (Value Text)
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
instance Property "NegativeValueConfiguration" NumberDisplayFormatConfigurationProperty where
type PropertyType "NegativeValueConfiguration" NumberDisplayFormatConfigurationProperty = NegativeValueConfigurationProperty
set :: PropertyType
"NegativeValueConfiguration"
NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType
"NegativeValueConfiguration"
NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
negativeValueConfiguration = NegativeValueConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"NegativeValueConfiguration"
NumberDisplayFormatConfigurationProperty
NegativeValueConfigurationProperty
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
instance Property "NullValueFormatConfiguration" NumberDisplayFormatConfigurationProperty where
type PropertyType "NullValueFormatConfiguration" NumberDisplayFormatConfigurationProperty = NullValueFormatConfigurationProperty
set :: PropertyType
"NullValueFormatConfiguration"
NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType
"NullValueFormatConfiguration"
NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
nullValueFormatConfiguration = NullValueFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"NullValueFormatConfiguration"
NumberDisplayFormatConfigurationProperty
NullValueFormatConfigurationProperty
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
instance Property "NumberScale" NumberDisplayFormatConfigurationProperty where
type PropertyType "NumberScale" NumberDisplayFormatConfigurationProperty = Value Prelude.Text
set :: PropertyType "NumberScale" NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType "NumberScale" NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{numberScale :: Maybe (Value Text)
numberScale = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NumberScale" NumberDisplayFormatConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
instance Property "Prefix" NumberDisplayFormatConfigurationProperty where
type PropertyType "Prefix" NumberDisplayFormatConfigurationProperty = Value Prelude.Text
set :: PropertyType "Prefix" NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType "Prefix" NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{prefix :: Maybe (Value Text)
prefix = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Prefix" NumberDisplayFormatConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
instance Property "SeparatorConfiguration" NumberDisplayFormatConfigurationProperty where
type PropertyType "SeparatorConfiguration" NumberDisplayFormatConfigurationProperty = NumericSeparatorConfigurationProperty
set :: PropertyType
"SeparatorConfiguration" NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType
"SeparatorConfiguration" NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
separatorConfiguration = NumericSeparatorConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SeparatorConfiguration" NumberDisplayFormatConfigurationProperty
NumericSeparatorConfigurationProperty
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
suffix :: Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
suffix :: Maybe (Value Text)
..}
instance Property "Suffix" NumberDisplayFormatConfigurationProperty where
type PropertyType "Suffix" NumberDisplayFormatConfigurationProperty = Value Prelude.Text
set :: PropertyType "Suffix" NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
-> NumberDisplayFormatConfigurationProperty
set PropertyType "Suffix" NumberDisplayFormatConfigurationProperty
newValue NumberDisplayFormatConfigurationProperty {Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: NumberDisplayFormatConfigurationProperty -> ()
decimalPlacesConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NullValueFormatConfigurationProperty
numberScale :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
prefix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
separatorConfiguration :: NumberDisplayFormatConfigurationProperty
-> Maybe NumericSeparatorConfigurationProperty
suffix :: NumberDisplayFormatConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
suffix :: Maybe (Value Text)
..}
= NumberDisplayFormatConfigurationProperty
{suffix :: Maybe (Value Text)
suffix = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Suffix" NumberDisplayFormatConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe DecimalPlacesConfigurationProperty
Maybe NegativeValueConfigurationProperty
Maybe NullValueFormatConfigurationProperty
Maybe NumericSeparatorConfigurationProperty
()
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
haddock_workaround_ :: ()
decimalPlacesConfiguration :: Maybe DecimalPlacesConfigurationProperty
negativeValueConfiguration :: Maybe NegativeValueConfigurationProperty
nullValueFormatConfiguration :: Maybe NullValueFormatConfigurationProperty
numberScale :: Maybe (Value Text)
prefix :: Maybe (Value Text)
separatorConfiguration :: Maybe NumericSeparatorConfigurationProperty
..}