{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Network.Google.TextToSpeech.Types
(
textToSpeechService
, cloudPlatformScope
, AudioConfig
, audioConfig
, acVolumeGainDB
, acSampleRateHertz
, acAudioEncoding
, acSpeakingRate
, acPitch
, VoiceSelectionParams
, voiceSelectionParams
, vspLanguageCode
, vspSsmlGender
, vspName
, SynthesizeSpeechRequest
, synthesizeSpeechRequest
, ssrAudioConfig
, ssrInput
, ssrVoice
, ListVoicesResponse
, listVoicesResponse
, lvrVoices
, VoiceSelectionParamsSsmlGender (..)
, SynthesisInput
, synthesisInput
, siText
, siSsml
, Xgafv (..)
, VoiceSsmlGender (..)
, SynthesizeSpeechResponse
, synthesizeSpeechResponse
, ssrAudioContent
, Voice
, voice
, vLanguageCodes
, vNATuralSampleRateHertz
, vSsmlGender
, vName
, AudioConfigAudioEncoding (..)
) where
import Network.Google.Prelude
import Network.Google.TextToSpeech.Types.Product
import Network.Google.TextToSpeech.Types.Sum
textToSpeechService :: ServiceConfig
textToSpeechService
= defaultService (ServiceId "texttospeech:v1")
"texttospeech.googleapis.com"
cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"]
cloudPlatformScope = Proxy;