Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getAccounts
Synopsis
- getAccounts :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> m (Either HttpException (Response GetAccountsResponse))
- getAccountsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> m (Either HttpException (Response ByteString))
- getAccountsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetAccountsResponse))
- getAccountsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetAccountsRequestBody = GetAccountsRequestBody {
- data GetAccountsResponse
- data GetAccountsResponseBody200 = GetAccountsResponseBody200 {}
- data GetAccountsResponseBody200Object'
Documentation
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | created |
-> 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. |
-> 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 | 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. |
-> GetAccountsRequestBody | The request body to send |
-> m (Either HttpException (Response GetAccountsResponse)) | Monad containing the result of the operation |
GET /v1/accounts
<p>Returns a list of accounts connected to your platform via <a href="/docs/connect">Connect</a>. If you’re not a platform, the list is empty.</p>
getAccountsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/accounts
The same as getAccounts
but returns the raw ByteString
getAccountsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetAccountsResponse)) Source #
GET /v1/accounts
Monadic version of getAccounts
(use with runWithConfiguration
)
getAccountsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> GetAccountsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/accounts
Monadic version of getAccountsRaw
(use with runWithConfiguration
)
data GetAccountsRequestBody Source #
Defines the data type for the schema getAccountsRequestBody
Instances
Eq GetAccountsRequestBody Source # | |
Defined in StripeAPI.Operations.GetAccounts | |
Show GetAccountsRequestBody Source # | |
Defined in StripeAPI.Operations.GetAccounts showsPrec :: Int -> GetAccountsRequestBody -> ShowS # show :: GetAccountsRequestBody -> String # showList :: [GetAccountsRequestBody] -> ShowS # | |
ToJSON GetAccountsRequestBody Source # | |
Defined in StripeAPI.Operations.GetAccounts toJSON :: GetAccountsRequestBody -> Value # toEncoding :: GetAccountsRequestBody -> Encoding # toJSONList :: [GetAccountsRequestBody] -> Value # | |
FromJSON GetAccountsRequestBody Source # | |
Defined in StripeAPI.Operations.GetAccounts |
data GetAccountsResponse Source #
Represents a response of the operation getAccounts
.
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), GetAccountsResponseError
is used.
GetAccountsResponseError String | Means either no matching case available or a parse error |
GetAccountsResponse200 GetAccountsResponseBody200 | Successful response. |
GetAccountsResponseDefault Error | Error response. |
Instances
Eq GetAccountsResponse Source # | |
Defined in StripeAPI.Operations.GetAccounts (==) :: GetAccountsResponse -> GetAccountsResponse -> Bool # (/=) :: GetAccountsResponse -> GetAccountsResponse -> Bool # | |
Show GetAccountsResponse Source # | |
Defined in StripeAPI.Operations.GetAccounts showsPrec :: Int -> GetAccountsResponse -> ShowS # show :: GetAccountsResponse -> String # showList :: [GetAccountsResponse] -> ShowS # |
data GetAccountsResponseBody200 Source #
Defines the data type for the schema GetAccountsResponseBody200
GetAccountsResponseBody200 | |
|
Instances
data GetAccountsResponseBody200Object' Source #
Defines the enum schema GetAccountsResponseBody200Object'
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
GetAccountsResponseBody200Object'EnumOther Value | |
GetAccountsResponseBody200Object'EnumTyped String | |
GetAccountsResponseBody200Object'EnumStringList |