{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.Pinpoint.Types.VoiceChannelResponse
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Pinpoint.Types.VoiceChannelResponse where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

-- | Provides information about the status and settings of the voice channel
-- for an application.
--
-- /See:/ 'newVoiceChannelResponse' smart constructor.
data VoiceChannelResponse = VoiceChannelResponse'
  { -- | The unique identifier for the application that the voice channel applies
    -- to.
    VoiceChannelResponse -> Maybe Text
applicationId :: Prelude.Maybe Prelude.Text,
    -- | The date and time, in ISO 8601 format, when the voice channel was
    -- enabled.
    VoiceChannelResponse -> Maybe Text
creationDate :: Prelude.Maybe Prelude.Text,
    -- | Specifies whether the voice channel is enabled for the application.
    VoiceChannelResponse -> Maybe Bool
enabled :: Prelude.Maybe Prelude.Bool,
    -- | (Not used) This property is retained only for backward compatibility.
    VoiceChannelResponse -> Maybe Bool
hasCredential :: Prelude.Maybe Prelude.Bool,
    -- | (Deprecated) An identifier for the voice channel. This property is
    -- retained only for backward compatibility.
    VoiceChannelResponse -> Maybe Text
id :: Prelude.Maybe Prelude.Text,
    -- | Specifies whether the voice channel is archived.
    VoiceChannelResponse -> Maybe Bool
isArchived :: Prelude.Maybe Prelude.Bool,
    -- | The user who last modified the voice channel.
    VoiceChannelResponse -> Maybe Text
lastModifiedBy :: Prelude.Maybe Prelude.Text,
    -- | The date and time, in ISO 8601 format, when the voice channel was last
    -- modified.
    VoiceChannelResponse -> Maybe Text
lastModifiedDate :: Prelude.Maybe Prelude.Text,
    -- | The current version of the voice channel.
    VoiceChannelResponse -> Maybe Int
version :: Prelude.Maybe Prelude.Int,
    -- | The type of messaging or notification platform for the channel. For the
    -- voice channel, this value is VOICE.
    VoiceChannelResponse -> Text
platform :: Prelude.Text
  }
  deriving (VoiceChannelResponse -> VoiceChannelResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VoiceChannelResponse -> VoiceChannelResponse -> Bool
$c/= :: VoiceChannelResponse -> VoiceChannelResponse -> Bool
== :: VoiceChannelResponse -> VoiceChannelResponse -> Bool
$c== :: VoiceChannelResponse -> VoiceChannelResponse -> Bool
Prelude.Eq, ReadPrec [VoiceChannelResponse]
ReadPrec VoiceChannelResponse
Int -> ReadS VoiceChannelResponse
ReadS [VoiceChannelResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [VoiceChannelResponse]
$creadListPrec :: ReadPrec [VoiceChannelResponse]
readPrec :: ReadPrec VoiceChannelResponse
$creadPrec :: ReadPrec VoiceChannelResponse
readList :: ReadS [VoiceChannelResponse]
$creadList :: ReadS [VoiceChannelResponse]
readsPrec :: Int -> ReadS VoiceChannelResponse
$creadsPrec :: Int -> ReadS VoiceChannelResponse
Prelude.Read, Int -> VoiceChannelResponse -> ShowS
[VoiceChannelResponse] -> ShowS
VoiceChannelResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [VoiceChannelResponse] -> ShowS
$cshowList :: [VoiceChannelResponse] -> ShowS
show :: VoiceChannelResponse -> String
$cshow :: VoiceChannelResponse -> String
showsPrec :: Int -> VoiceChannelResponse -> ShowS
$cshowsPrec :: Int -> VoiceChannelResponse -> ShowS
Prelude.Show, forall x. Rep VoiceChannelResponse x -> VoiceChannelResponse
forall x. VoiceChannelResponse -> Rep VoiceChannelResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep VoiceChannelResponse x -> VoiceChannelResponse
$cfrom :: forall x. VoiceChannelResponse -> Rep VoiceChannelResponse x
Prelude.Generic)

-- |
-- Create a value of 'VoiceChannelResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'applicationId', 'voiceChannelResponse_applicationId' - The unique identifier for the application that the voice channel applies
-- to.
--
-- 'creationDate', 'voiceChannelResponse_creationDate' - The date and time, in ISO 8601 format, when the voice channel was
-- enabled.
--
-- 'enabled', 'voiceChannelResponse_enabled' - Specifies whether the voice channel is enabled for the application.
--
-- 'hasCredential', 'voiceChannelResponse_hasCredential' - (Not used) This property is retained only for backward compatibility.
--
-- 'id', 'voiceChannelResponse_id' - (Deprecated) An identifier for the voice channel. This property is
-- retained only for backward compatibility.
--
-- 'isArchived', 'voiceChannelResponse_isArchived' - Specifies whether the voice channel is archived.
--
-- 'lastModifiedBy', 'voiceChannelResponse_lastModifiedBy' - The user who last modified the voice channel.
--
-- 'lastModifiedDate', 'voiceChannelResponse_lastModifiedDate' - The date and time, in ISO 8601 format, when the voice channel was last
-- modified.
--
-- 'version', 'voiceChannelResponse_version' - The current version of the voice channel.
--
-- 'platform', 'voiceChannelResponse_platform' - The type of messaging or notification platform for the channel. For the
-- voice channel, this value is VOICE.
newVoiceChannelResponse ::
  -- | 'platform'
  Prelude.Text ->
  VoiceChannelResponse
newVoiceChannelResponse :: Text -> VoiceChannelResponse
newVoiceChannelResponse Text
pPlatform_ =
  VoiceChannelResponse'
    { $sel:applicationId:VoiceChannelResponse' :: Maybe Text
applicationId =
        forall a. Maybe a
Prelude.Nothing,
      $sel:creationDate:VoiceChannelResponse' :: Maybe Text
creationDate = forall a. Maybe a
Prelude.Nothing,
      $sel:enabled:VoiceChannelResponse' :: Maybe Bool
enabled = forall a. Maybe a
Prelude.Nothing,
      $sel:hasCredential:VoiceChannelResponse' :: Maybe Bool
hasCredential = forall a. Maybe a
Prelude.Nothing,
      $sel:id:VoiceChannelResponse' :: Maybe Text
id = forall a. Maybe a
Prelude.Nothing,
      $sel:isArchived:VoiceChannelResponse' :: Maybe Bool
isArchived = forall a. Maybe a
Prelude.Nothing,
      $sel:lastModifiedBy:VoiceChannelResponse' :: Maybe Text
lastModifiedBy = forall a. Maybe a
Prelude.Nothing,
      $sel:lastModifiedDate:VoiceChannelResponse' :: Maybe Text
lastModifiedDate = forall a. Maybe a
Prelude.Nothing,
      $sel:version:VoiceChannelResponse' :: Maybe Int
version = forall a. Maybe a
Prelude.Nothing,
      $sel:platform:VoiceChannelResponse' :: Text
platform = Text
pPlatform_
    }

-- | The unique identifier for the application that the voice channel applies
-- to.
voiceChannelResponse_applicationId :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Text)
voiceChannelResponse_applicationId :: Lens' VoiceChannelResponse (Maybe Text)
voiceChannelResponse_applicationId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Text
applicationId :: Maybe Text
$sel:applicationId:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
applicationId} -> Maybe Text
applicationId) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Text
a -> VoiceChannelResponse
s {$sel:applicationId:VoiceChannelResponse' :: Maybe Text
applicationId = Maybe Text
a} :: VoiceChannelResponse)

-- | The date and time, in ISO 8601 format, when the voice channel was
-- enabled.
voiceChannelResponse_creationDate :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Text)
voiceChannelResponse_creationDate :: Lens' VoiceChannelResponse (Maybe Text)
voiceChannelResponse_creationDate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Text
creationDate :: Maybe Text
$sel:creationDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
creationDate} -> Maybe Text
creationDate) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Text
a -> VoiceChannelResponse
s {$sel:creationDate:VoiceChannelResponse' :: Maybe Text
creationDate = Maybe Text
a} :: VoiceChannelResponse)

-- | Specifies whether the voice channel is enabled for the application.
voiceChannelResponse_enabled :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Bool)
voiceChannelResponse_enabled :: Lens' VoiceChannelResponse (Maybe Bool)
voiceChannelResponse_enabled = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Bool
enabled :: Maybe Bool
$sel:enabled:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
enabled} -> Maybe Bool
enabled) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Bool
a -> VoiceChannelResponse
s {$sel:enabled:VoiceChannelResponse' :: Maybe Bool
enabled = Maybe Bool
a} :: VoiceChannelResponse)

-- | (Not used) This property is retained only for backward compatibility.
voiceChannelResponse_hasCredential :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Bool)
voiceChannelResponse_hasCredential :: Lens' VoiceChannelResponse (Maybe Bool)
voiceChannelResponse_hasCredential = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Bool
hasCredential :: Maybe Bool
$sel:hasCredential:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
hasCredential} -> Maybe Bool
hasCredential) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Bool
a -> VoiceChannelResponse
s {$sel:hasCredential:VoiceChannelResponse' :: Maybe Bool
hasCredential = Maybe Bool
a} :: VoiceChannelResponse)

-- | (Deprecated) An identifier for the voice channel. This property is
-- retained only for backward compatibility.
voiceChannelResponse_id :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Text)
voiceChannelResponse_id :: Lens' VoiceChannelResponse (Maybe Text)
voiceChannelResponse_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Text
id :: Maybe Text
$sel:id:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
id} -> Maybe Text
id) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Text
a -> VoiceChannelResponse
s {$sel:id:VoiceChannelResponse' :: Maybe Text
id = Maybe Text
a} :: VoiceChannelResponse)

-- | Specifies whether the voice channel is archived.
voiceChannelResponse_isArchived :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Bool)
voiceChannelResponse_isArchived :: Lens' VoiceChannelResponse (Maybe Bool)
voiceChannelResponse_isArchived = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Bool
isArchived :: Maybe Bool
$sel:isArchived:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
isArchived} -> Maybe Bool
isArchived) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Bool
a -> VoiceChannelResponse
s {$sel:isArchived:VoiceChannelResponse' :: Maybe Bool
isArchived = Maybe Bool
a} :: VoiceChannelResponse)

-- | The user who last modified the voice channel.
voiceChannelResponse_lastModifiedBy :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Text)
voiceChannelResponse_lastModifiedBy :: Lens' VoiceChannelResponse (Maybe Text)
voiceChannelResponse_lastModifiedBy = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Text
lastModifiedBy :: Maybe Text
$sel:lastModifiedBy:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
lastModifiedBy} -> Maybe Text
lastModifiedBy) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Text
a -> VoiceChannelResponse
s {$sel:lastModifiedBy:VoiceChannelResponse' :: Maybe Text
lastModifiedBy = Maybe Text
a} :: VoiceChannelResponse)

-- | The date and time, in ISO 8601 format, when the voice channel was last
-- modified.
voiceChannelResponse_lastModifiedDate :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Text)
voiceChannelResponse_lastModifiedDate :: Lens' VoiceChannelResponse (Maybe Text)
voiceChannelResponse_lastModifiedDate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Text
lastModifiedDate :: Maybe Text
$sel:lastModifiedDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
lastModifiedDate} -> Maybe Text
lastModifiedDate) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Text
a -> VoiceChannelResponse
s {$sel:lastModifiedDate:VoiceChannelResponse' :: Maybe Text
lastModifiedDate = Maybe Text
a} :: VoiceChannelResponse)

-- | The current version of the voice channel.
voiceChannelResponse_version :: Lens.Lens' VoiceChannelResponse (Prelude.Maybe Prelude.Int)
voiceChannelResponse_version :: Lens' VoiceChannelResponse (Maybe Int)
voiceChannelResponse_version = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Maybe Int
version :: Maybe Int
$sel:version:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Int
version} -> Maybe Int
version) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Maybe Int
a -> VoiceChannelResponse
s {$sel:version:VoiceChannelResponse' :: Maybe Int
version = Maybe Int
a} :: VoiceChannelResponse)

-- | The type of messaging or notification platform for the channel. For the
-- voice channel, this value is VOICE.
voiceChannelResponse_platform :: Lens.Lens' VoiceChannelResponse Prelude.Text
voiceChannelResponse_platform :: Lens' VoiceChannelResponse Text
voiceChannelResponse_platform = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VoiceChannelResponse' {Text
platform :: Text
$sel:platform:VoiceChannelResponse' :: VoiceChannelResponse -> Text
platform} -> Text
platform) (\s :: VoiceChannelResponse
s@VoiceChannelResponse' {} Text
a -> VoiceChannelResponse
s {$sel:platform:VoiceChannelResponse' :: Text
platform = Text
a} :: VoiceChannelResponse)

instance Data.FromJSON VoiceChannelResponse where
  parseJSON :: Value -> Parser VoiceChannelResponse
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"VoiceChannelResponse"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Maybe Bool
-> Maybe Bool
-> Maybe Text
-> Maybe Bool
-> Maybe Text
-> Maybe Text
-> Maybe Int
-> Text
-> VoiceChannelResponse
VoiceChannelResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"ApplicationId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"CreationDate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Enabled")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"HasCredential")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Id")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"IsArchived")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"LastModifiedBy")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"LastModifiedDate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Version")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"Platform")
      )

instance Prelude.Hashable VoiceChannelResponse where
  hashWithSalt :: Int -> VoiceChannelResponse -> Int
hashWithSalt Int
_salt VoiceChannelResponse' {Maybe Bool
Maybe Int
Maybe Text
Text
platform :: Text
version :: Maybe Int
lastModifiedDate :: Maybe Text
lastModifiedBy :: Maybe Text
isArchived :: Maybe Bool
id :: Maybe Text
hasCredential :: Maybe Bool
enabled :: Maybe Bool
creationDate :: Maybe Text
applicationId :: Maybe Text
$sel:platform:VoiceChannelResponse' :: VoiceChannelResponse -> Text
$sel:version:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Int
$sel:lastModifiedDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:lastModifiedBy:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:isArchived:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:id:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:hasCredential:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:enabled:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:creationDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:applicationId:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
applicationId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
creationDate
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
enabled
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
hasCredential
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
isArchived
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
lastModifiedBy
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
lastModifiedDate
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Int
version
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
platform

instance Prelude.NFData VoiceChannelResponse where
  rnf :: VoiceChannelResponse -> ()
rnf VoiceChannelResponse' {Maybe Bool
Maybe Int
Maybe Text
Text
platform :: Text
version :: Maybe Int
lastModifiedDate :: Maybe Text
lastModifiedBy :: Maybe Text
isArchived :: Maybe Bool
id :: Maybe Text
hasCredential :: Maybe Bool
enabled :: Maybe Bool
creationDate :: Maybe Text
applicationId :: Maybe Text
$sel:platform:VoiceChannelResponse' :: VoiceChannelResponse -> Text
$sel:version:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Int
$sel:lastModifiedDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:lastModifiedBy:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:isArchived:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:id:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:hasCredential:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:enabled:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Bool
$sel:creationDate:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
$sel:applicationId:VoiceChannelResponse' :: VoiceChannelResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
applicationId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
creationDate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
enabled
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
hasCredential
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
isArchived
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
lastModifiedBy
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
lastModifiedDate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Int
version
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
platform