Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
RecurlyClient.Operations.List_account_notes
Description
Contains the different functions to run the operation list_account_notes
Synopsis
- list_account_notes :: forall m. MonadHTTP m => List_account_notesParameters -> ClientT m (Response List_account_notesResponse)
- data List_account_notesParameters = List_account_notesParameters {}
- mkList_account_notesParameters :: Text -> List_account_notesParameters
- data List_account_notesResponse
- list_account_notesWithConfiguration :: forall m. MonadHTTP m => Configuration -> List_account_notesParameters -> m (Response List_account_notesResponse)
- list_account_notesRaw :: forall m. MonadHTTP m => List_account_notesParameters -> ClientT m (Response ByteString)
- list_account_notesWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> List_account_notesParameters -> m (Response ByteString)
Documentation
Arguments
:: forall m. MonadHTTP m | |
=> List_account_notesParameters | Contains all available parameters of this operation (query and path parameters) |
-> ClientT m (Response List_account_notesResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/notes
See the Pagination Guide to learn how to use pagination in the API and Client Libraries.
data List_account_notesParameters Source #
Defines the object schema located at paths./accounts/{account_id}/notes.GET.parameters
in the specification.
Constructors
List_account_notesParameters | |
Fields
|
Instances
mkList_account_notesParameters Source #
Create a new List_account_notesParameters
with all required fields.
data List_account_notesResponse Source #
Represents a response of the operation list_account_notes
.
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), List_account_notesResponseError
is used.
Constructors
List_account_notesResponseError String | Means either no matching case available or a parse error |
List_account_notesResponse200 AccountNoteList | A list of an account's notes. |
List_account_notesResponse404 Error | Incorrect site or account ID. |
List_account_notesResponseDefault Error | Unexpected error. |
Instances
Show List_account_notesResponse Source # | |
Defined in RecurlyClient.Operations.List_account_notes Methods showsPrec :: Int -> List_account_notesResponse -> ShowS # show :: List_account_notesResponse -> String # showList :: [List_account_notesResponse] -> ShowS # | |
Eq List_account_notesResponse Source # | |
Defined in RecurlyClient.Operations.List_account_notes Methods (==) :: List_account_notesResponse -> List_account_notesResponse -> Bool # (/=) :: List_account_notesResponse -> List_account_notesResponse -> Bool # |
list_account_notesWithConfiguration Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> List_account_notesParameters | Contains all available parameters of this operation (query and path parameters) |
-> m (Response List_account_notesResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/notes
The same as list_account_notes
but accepts an explicit configuration.
list_account_notesRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> List_account_notesParameters | Contains all available parameters of this operation (query and path parameters) |
-> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/notes
The same as list_account_notes
but returns the raw ByteString
.
list_account_notesWithConfigurationRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> List_account_notesParameters | Contains all available parameters of this operation (query and path parameters) |
-> m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/notes
The same as list_account_notes
but accepts an explicit configuration and returns the raw ByteString
.