module Stratosphere.B2BI.Partnership (
        module Exports, Partnership(..), mkPartnership
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.B2BI.Partnership.CapabilityOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Partnership
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html>
    Partnership {Partnership -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-capabilities>
                 Partnership -> ValueList Text
capabilities :: (ValueList Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-capabilityoptions>
                 Partnership -> Maybe CapabilityOptionsProperty
capabilityOptions :: (Prelude.Maybe CapabilityOptionsProperty),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-email>
                 Partnership -> Value Text
email :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-name>
                 Partnership -> Value Text
name :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-phone>
                 Partnership -> Maybe (Value Text)
phone :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-profileid>
                 Partnership -> Value Text
profileId :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html#cfn-b2bi-partnership-tags>
                 Partnership -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (Partnership -> Partnership -> Bool
(Partnership -> Partnership -> Bool)
-> (Partnership -> Partnership -> Bool) -> Eq Partnership
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Partnership -> Partnership -> Bool
== :: Partnership -> Partnership -> Bool
$c/= :: Partnership -> Partnership -> Bool
/= :: Partnership -> Partnership -> Bool
Prelude.Eq, Int -> Partnership -> ShowS
[Partnership] -> ShowS
Partnership -> String
(Int -> Partnership -> ShowS)
-> (Partnership -> String)
-> ([Partnership] -> ShowS)
-> Show Partnership
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Partnership -> ShowS
showsPrec :: Int -> Partnership -> ShowS
$cshow :: Partnership -> String
show :: Partnership -> String
$cshowList :: [Partnership] -> ShowS
showList :: [Partnership] -> ShowS
Prelude.Show)
mkPartnership ::
  ValueList Prelude.Text
  -> Value Prelude.Text
     -> Value Prelude.Text -> Value Prelude.Text -> Partnership
mkPartnership :: ValueList Text
-> Value Text -> Value Text -> Value Text -> Partnership
mkPartnership ValueList Text
capabilities Value Text
email Value Text
name Value Text
profileId
  = Partnership
      {haddock_workaround_ :: ()
haddock_workaround_ = (), capabilities :: ValueList Text
capabilities = ValueList Text
capabilities,
       email :: Value Text
email = Value Text
email, name :: Value Text
name = Value Text
name, profileId :: Value Text
profileId = Value Text
profileId,
       capabilityOptions :: Maybe CapabilityOptionsProperty
capabilityOptions = Maybe CapabilityOptionsProperty
forall a. Maybe a
Prelude.Nothing, phone :: Maybe (Value Text)
phone = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Partnership where
  toResourceProperties :: Partnership -> ResourceProperties
toResourceProperties Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::B2BI::Partnership", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"Capabilities" 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..= ValueList Text
capabilities, Key
"Email" 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
email,
                            Key
"Name" 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
name, Key
"ProfileId" 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
profileId]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> CapabilityOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CapabilityOptions" (CapabilityOptionsProperty -> (Key, Value))
-> Maybe CapabilityOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CapabilityOptionsProperty
capabilityOptions,
                               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
"Phone" (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)
phone,
                               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON Partnership where
  toJSON :: Partnership -> Value
toJSON Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = [(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
"Capabilities" 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..= ValueList Text
capabilities, Key
"Email" 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
email,
               Key
"Name" 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
name, Key
"ProfileId" 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
profileId]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> CapabilityOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CapabilityOptions" (CapabilityOptionsProperty -> (Key, Value))
-> Maybe CapabilityOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CapabilityOptionsProperty
capabilityOptions,
                  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
"Phone" (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)
phone,
                  Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "Capabilities" Partnership where
  type PropertyType "Capabilities" Partnership = ValueList Prelude.Text
  set :: PropertyType "Capabilities" Partnership
-> Partnership -> Partnership
set PropertyType "Capabilities" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = Partnership {capabilities :: ValueList Text
capabilities = PropertyType "Capabilities" Partnership
ValueList Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
Value Text
haddock_workaround_ :: ()
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
instance Property "CapabilityOptions" Partnership where
  type PropertyType "CapabilityOptions" Partnership = CapabilityOptionsProperty
  set :: PropertyType "CapabilityOptions" Partnership
-> Partnership -> Partnership
set PropertyType "CapabilityOptions" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = Partnership {capabilityOptions :: Maybe CapabilityOptionsProperty
capabilityOptions = CapabilityOptionsProperty -> Maybe CapabilityOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CapabilityOptions" Partnership
CapabilityOptionsProperty
newValue, Maybe [Tag]
Maybe (Value Text)
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Email" Partnership where
  type PropertyType "Email" Partnership = Value Prelude.Text
  set :: PropertyType "Email" Partnership -> Partnership -> Partnership
set PropertyType "Email" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..} = Partnership {email :: Value Text
email = PropertyType "Email" Partnership
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Name" Partnership where
  type PropertyType "Name" Partnership = Value Prelude.Text
  set :: PropertyType "Name" Partnership -> Partnership -> Partnership
set PropertyType "Name" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..} = Partnership {name :: Value Text
name = PropertyType "Name" Partnership
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Phone" Partnership where
  type PropertyType "Phone" Partnership = Value Prelude.Text
  set :: PropertyType "Phone" Partnership -> Partnership -> Partnership
set PropertyType "Phone" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = Partnership {phone :: Maybe (Value Text)
phone = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Phone" Partnership
Value Text
newValue, Maybe [Tag]
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
profileId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
profileId :: Value Text
tags :: Maybe [Tag]
..}
instance Property "ProfileId" Partnership where
  type PropertyType "ProfileId" Partnership = Value Prelude.Text
  set :: PropertyType "ProfileId" Partnership -> Partnership -> Partnership
set PropertyType "ProfileId" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = Partnership {profileId :: Value Text
profileId = PropertyType "ProfileId" Partnership
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" Partnership where
  type PropertyType "Tags" Partnership = [Tag]
  set :: PropertyType "Tags" Partnership -> Partnership -> Partnership
set PropertyType "Tags" Partnership
newValue Partnership {Maybe [Tag]
Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: Partnership -> ()
capabilities :: Partnership -> ValueList Text
capabilityOptions :: Partnership -> Maybe CapabilityOptionsProperty
email :: Partnership -> Value Text
name :: Partnership -> Value Text
phone :: Partnership -> Maybe (Value Text)
profileId :: Partnership -> Value Text
tags :: Partnership -> Maybe [Tag]
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
tags :: Maybe [Tag]
..}
    = Partnership {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" Partnership
newValue, Maybe (Value Text)
Maybe CapabilityOptionsProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
haddock_workaround_ :: ()
capabilities :: ValueList Text
capabilityOptions :: Maybe CapabilityOptionsProperty
email :: Value Text
name :: Value Text
phone :: Maybe (Value Text)
profileId :: Value Text
..}