-- CHANGE WITH CAUTION: This is a generated code file generated by https://github.com/Haskell-OpenAPI-Code-Generator/Haskell-OpenAPI-Client-Code-Generator.
{-# LANGUAGE OverloadedStrings #-}

-- | Contains the default configuration
module RecurlyClient.Configuration where

import qualified Data.Text
import qualified Data.Text as Data.Text.Internal
import qualified GHC.Types
import qualified RecurlyClient.Common

{- | The default url specified by the OpenAPI specification

@https://v3.recurly.com@
-}
defaultURL :: Text
defaultURL = String -> Text
Data.Text.Internal.pack String
"https://v3.recurly.com"

{- | The default application name used in the @User-Agent@ header which is based on the @info.title@ field of the specification

@Recurly V3 API@
-}
defaultApplicationName :: Text
defaultApplicationName = String -> Text
Data.Text.Internal.pack String
"Recurly V3 API"

-- | The default configuration containing the 'defaultURL' and no authorization
defaultConfiguration :: Configuration
defaultConfiguration = Text -> SecurityScheme -> Bool -> Text -> Configuration
RecurlyClient.Common.Configuration Text
defaultURL SecurityScheme
RecurlyClient.Common.anonymousSecurityScheme Bool
GHC.Types.True Text
defaultApplicationName