recurly-client-0.1.0.0: Client for Recurly subscription management
Safe HaskellSafe-Inferred
LanguageHaskell2010

RecurlyClient.Operations.Get_performance_obligation

Description

Contains the different functions to run the operation get_performance_obligation

Synopsis

Documentation

get_performance_obligation Source #

Arguments

:: forall m. MonadHTTP m 
=> Text

performance_obligation_id: Performance Obligation id. | Constraints: Maximum length of 13

-> ClientT m (Response Get_performance_obligationResponse)

Monadic computation which returns the result of the operation

GET /performance_obligations/{performance_obligation_id}

Get a single Performance Obligation.

data Get_performance_obligationResponse Source #

Represents a response of the operation get_performance_obligation.

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), Get_performance_obligationResponseError is used.

Constructors

Get_performance_obligationResponseError String

Means either no matching case available or a parse error

Get_performance_obligationResponse200 PerformanceObligation

A single Performance Obligation.

Get_performance_obligationResponseDefault Error

Unexpected error.

get_performance_obligationWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Text

performance_obligation_id: Performance Obligation id. | Constraints: Maximum length of 13

-> m (Response Get_performance_obligationResponse)

Monadic computation which returns the result of the operation

GET /performance_obligations/{performance_obligation_id}

The same as get_performance_obligation but accepts an explicit configuration.

get_performance_obligationRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Text

performance_obligation_id: Performance Obligation id. | Constraints: Maximum length of 13

-> ClientT m (Response ByteString)

Monadic computation which returns the result of the operation

GET /performance_obligations/{performance_obligation_id}

The same as get_performance_obligation but returns the raw ByteString.

get_performance_obligationWithConfigurationRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Text

performance_obligation_id: Performance Obligation id. | Constraints: Maximum length of 13

-> m (Response ByteString)

Monadic computation which returns the result of the operation

GET /performance_obligations/{performance_obligation_id}

The same as get_performance_obligation but accepts an explicit configuration and returns the raw ByteString.