Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postTopups
Synopsis
- postTopups :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostTopupsRequestBody -> m (Either HttpException (Response PostTopupsResponse))
- postTopupsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostTopupsRequestBody -> m (Either HttpException (Response ByteString))
- postTopupsM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostTopupsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostTopupsResponse))
- postTopupsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostTopupsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostTopupsRequestBody = PostTopupsRequestBody {
- postTopupsRequestBodyAmount :: Integer
- postTopupsRequestBodyCurrency :: String
- postTopupsRequestBodyDescription :: Maybe String
- postTopupsRequestBodyExpand :: Maybe ([] String)
- postTopupsRequestBodyMetadata :: Maybe PostTopupsRequestBodyMetadata'
- postTopupsRequestBodySource :: Maybe String
- postTopupsRequestBodyStatementDescriptor :: Maybe String
- postTopupsRequestBodyTransferGroup :: Maybe String
- data PostTopupsRequestBodyMetadata' = PostTopupsRequestBodyMetadata' {
- data PostTopupsResponse
Documentation
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> PostTopupsRequestBody | The request body to send |
-> m (Either HttpException (Response PostTopupsResponse)) | Monad containing the result of the operation |
POST /v1/topups
<p>Top up the balance of an account</p>
postTopupsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostTopupsRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/topups
The same as postTopups
but returns the raw ByteString
postTopupsM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostTopupsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostTopupsResponse)) Source #
POST /v1/topups
Monadic version of postTopups
(use with runWithConfiguration
)
postTopupsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostTopupsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/topups
Monadic version of postTopupsRaw
(use with runWithConfiguration
)
data PostTopupsRequestBody Source #
Defines the data type for the schema postTopupsRequestBody
PostTopupsRequestBody | |
|
Instances
Eq PostTopupsRequestBody Source # | |
Defined in StripeAPI.Operations.PostTopups (==) :: PostTopupsRequestBody -> PostTopupsRequestBody -> Bool # (/=) :: PostTopupsRequestBody -> PostTopupsRequestBody -> Bool # | |
Show PostTopupsRequestBody Source # | |
Defined in StripeAPI.Operations.PostTopups showsPrec :: Int -> PostTopupsRequestBody -> ShowS # show :: PostTopupsRequestBody -> String # showList :: [PostTopupsRequestBody] -> ShowS # | |
ToJSON PostTopupsRequestBody Source # | |
Defined in StripeAPI.Operations.PostTopups toJSON :: PostTopupsRequestBody -> Value # toEncoding :: PostTopupsRequestBody -> Encoding # toJSONList :: [PostTopupsRequestBody] -> Value # toEncodingList :: [PostTopupsRequestBody] -> Encoding # | |
FromJSON PostTopupsRequestBody Source # | |
Defined in StripeAPI.Operations.PostTopups parseJSON :: Value -> Parser PostTopupsRequestBody # parseJSONList :: Value -> Parser [PostTopupsRequestBody] # |
data PostTopupsRequestBodyMetadata' Source #
Defines the data type for the schema postTopupsRequestBodyMetadata'
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
data PostTopupsResponse Source #
Represents a response of the operation postTopups
.
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), PostTopupsResponseError
is used.
PostTopupsResponseError String | Means either no matching case available or a parse error |
PostTopupsResponse200 Topup | Successful response. |
PostTopupsResponseDefault Error | Error response. |
Instances
Eq PostTopupsResponse Source # | |
Defined in StripeAPI.Operations.PostTopups (==) :: PostTopupsResponse -> PostTopupsResponse -> Bool # (/=) :: PostTopupsResponse -> PostTopupsResponse -> Bool # | |
Show PostTopupsResponse Source # | |
Defined in StripeAPI.Operations.PostTopups showsPrec :: Int -> PostTopupsResponse -> ShowS # show :: PostTopupsResponse -> String # showList :: [PostTopupsResponse] -> ShowS # |