stripeapi-2.0.0.1: Stripe-Library
Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.GetAccount

Description

Contains the different functions to run the operation getAccount

Synopsis

Documentation

getAccount Source #

Arguments

:: forall m. MonadHTTP m 
=> Maybe [Text]

expand: Specifies which fields in the response should be expanded.

-> ClientT m (Response GetAccountResponse)

Monadic computation which returns the result of the operation

GET /v1/account

<p>Retrieves the details of an account.</p>

data GetAccountResponse Source #

Represents a response of the operation getAccount.

The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), GetAccountResponseError is used.

Constructors

GetAccountResponseError String

Means either no matching case available or a parse error

GetAccountResponse200 Account

Successful response.

GetAccountResponseDefault Error

Error response.