Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getBalanceTransactions
Synopsis
- getBalanceTransactions :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> m (Either HttpException (Response GetBalanceTransactionsResponse))
- getBalanceTransactionsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> m (Either HttpException (Response ByteString))
- getBalanceTransactionsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetBalanceTransactionsResponse))
- getBalanceTransactionsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetBalanceTransactionsRequestBody = GetBalanceTransactionsRequestBody {
- data GetBalanceTransactionsResponse
- data GetBalanceTransactionsResponseBody200 = GetBalanceTransactionsResponseBody200 {}
- data GetBalanceTransactionsResponseBody200Object'
Documentation
getBalanceTransactions Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | available_on |
-> Maybe String | created |
-> Maybe String | currency: Only return transactions in a certain currency. Three-letter ISO currency code, in lowercase. Must be a supported currency. |
-> Maybe String | ending_before: A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list. | Constraints: Maximum length of 5000 |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> Maybe Integer | limit: A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. |
-> Maybe String | payout: For automatic Stripe payouts only, only returns transactions that were paid out on the specified payout ID. | Constraints: Maximum length of 5000 |
-> Maybe String | source: Only returns the original transaction. | Constraints: Maximum length of 5000 |
-> Maybe String | starting_after: A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list. | Constraints: Maximum length of 5000 |
-> Maybe String | type: Only returns transactions of the given type. One of: `charge`, `refund`, `adjustment`, `application_fee`, `application_fee_refund`, `transfer`, `payment`, `payout`, `payout_failure`, `stripe_fee`, or `network_cost`. | Constraints: Maximum length of 5000 |
-> GetBalanceTransactionsRequestBody | The request body to send |
-> m (Either HttpException (Response GetBalanceTransactionsResponse)) | Monad containing the result of the operation |
GET /v1/balance_transactions
<p>Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.</p>
<p>Note that this endpoint was previously called “Balance history” and used the path <code>/v1/balance/history</code>.</p>
getBalanceTransactionsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/balance_transactions
The same as getBalanceTransactions
but returns the raw ByteString
getBalanceTransactionsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetBalanceTransactionsResponse)) Source #
GET /v1/balance_transactions
Monadic version of getBalanceTransactions
(use with runWithConfiguration
)
getBalanceTransactionsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> GetBalanceTransactionsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/balance_transactions
Monadic version of getBalanceTransactionsRaw
(use with runWithConfiguration
)
data GetBalanceTransactionsRequestBody Source #
Defines the data type for the schema getBalanceTransactionsRequestBody
data GetBalanceTransactionsResponse Source #
Represents a response of the operation getBalanceTransactions
.
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), GetBalanceTransactionsResponseError
is used.
GetBalanceTransactionsResponseError String | Means either no matching case available or a parse error |
GetBalanceTransactionsResponse200 GetBalanceTransactionsResponseBody200 | Successful response. |
GetBalanceTransactionsResponseDefault Error | Error response. |
data GetBalanceTransactionsResponseBody200 Source #
Defines the data type for the schema GetBalanceTransactionsResponseBody200
GetBalanceTransactionsResponseBody200 | |
|
data GetBalanceTransactionsResponseBody200Object' Source #
Defines the enum schema GetBalanceTransactionsResponseBody200Object'
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
GetBalanceTransactionsResponseBody200Object'EnumOther Value | |
GetBalanceTransactionsResponseBody200Object'EnumTyped String | |
GetBalanceTransactionsResponseBody200Object'EnumStringList |