mollie-api-haskell-0.1.0.2: Mollie API client for Haskell http://www.mollie.com

Safe HaskellNone
LanguageHaskell2010

Mollie.API.Issuers

Synopsis

Documentation

issuersPath :: Text Source #

Issuer resource's path, relative to API's versioned url.

getIssuer Source #

Arguments

:: Text

issuerId

-> Mollie (Either ResponseError Issuer) 

Handler to get an issuer by its identifier.

For more information see: https://www.mollie.com/en/docs/reference/issuers/get.

getIssuers Source #

Arguments

:: Int

offset

-> Int

count

-> Mollie (Either ResponseError (List Issuer)) 

Handler to get a list of issuers. Because the list endpoint is paginated this handler requires an offset and a count. The maximum amount of payment methods returned with a single call is 250.

For more information see: https://www.mollie.com/en/docs/reference/issuers/list.

data Issuer Source #

Representation of an issuer available at Mollie.

For more information see: https://www.mollie.com/en/docs/reference/issuers/get.

Constructors

Issuer 

Fields

data ListLinks Source #

Important links associated with List responses.

Constructors

ListLinks 

Fields

data List a Source #

List response for any resource with metadata.

For more information see: https://www.mollie.com/nl/docs/reference/payments/list.

Constructors

List 

Fields

Instances

Show a => Show (List a) Source # 

Methods

showsPrec :: Int -> List a -> ShowS #

show :: List a -> String #

showList :: [List a] -> ShowS #

FromJSON a0 => FromJSON (List a0) Source # 

Methods

parseJSON :: Value -> Parser (List a0) #

data ResponseError Source #

Response errors which could happen when requesting resources from Mollie.