{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Fonts.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.Fonts.Types ( -- * Service Configuration fontsService -- * Webfont , Webfont , webfont , wVariants , wKind , wCategory , wFamily , wVersion , wFiles , wSubSets , wLastModified -- * WebfontList , WebfontList , webfontList , wlKind , wlItems -- * WebfontsListSort , WebfontsListSort (..) -- * WebfontFiles , WebfontFiles , webfontFiles , wfAddtional ) where import Network.Google.Fonts.Types.Product import Network.Google.Fonts.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v1' of the Google Fonts Developer API. This contains the host and root path used as a starting point for constructing service requests. fontsService :: ServiceConfig fontsService = defaultService (ServiceId "webfonts:v1") "www.googleapis.com"