{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.TextToSpeech.Types -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.TextToSpeech.Types ( -- * Service Configuration textToSpeechService -- * OAuth Scopes , cloudPlatformScope -- * AudioConfig , AudioConfig , audioConfig , acVolumeGainDB , acSampleRateHertz , acAudioEncoding , acSpeakingRate , acPitch -- * VoiceSelectionParams , VoiceSelectionParams , voiceSelectionParams , vspLanguageCode , vspSsmlGender , vspName -- * SynthesizeSpeechRequest , SynthesizeSpeechRequest , synthesizeSpeechRequest , ssrAudioConfig , ssrInput , ssrVoice -- * ListVoicesResponse , ListVoicesResponse , listVoicesResponse , lvrVoices -- * VoiceSelectionParamsSsmlGender , VoiceSelectionParamsSsmlGender (..) -- * SynthesisInput , SynthesisInput , synthesisInput , siText , siSsml -- * Xgafv , Xgafv (..) -- * VoiceSsmlGender , VoiceSsmlGender (..) -- * SynthesizeSpeechResponse , SynthesizeSpeechResponse , synthesizeSpeechResponse , ssrAudioContent -- * Voice , Voice , voice , vLanguageCodes , vNATuralSampleRateHertz , vSsmlGender , vName -- * AudioConfigAudioEncoding , AudioConfigAudioEncoding (..) ) where import Network.Google.Prelude import Network.Google.TextToSpeech.Types.Product import Network.Google.TextToSpeech.Types.Sum -- | Default request referring to version 'v1' of the Cloud Text-to-Speech API. This contains the host and root path used as a starting point for constructing service requests. textToSpeechService :: ServiceConfig textToSpeechService = defaultService (ServiceId "texttospeech:v1") "texttospeech.googleapis.com" -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"] cloudPlatformScope = Proxy;