Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postFiles
Synopsis
- postFiles :: forall m. MonadHTTP m => ClientT m (Response PostFilesResponse)
- data PostFilesResponse
Documentation
:: forall m. MonadHTTP m | |
=> ClientT m (Response PostFilesResponse) | Monadic computation which returns the result of the operation |
POST /v1/files
<p>To upload a file to Stripe, you’ll need to send a request of type <code>multipart/form-data</code>. The request should contain the file you would like to upload, as well as the parameters for creating a file.</p>
<p>All of Stripe’s officially supported Client libraries should have support for sending <code>multipart/form-data</code>.</p>
data PostFilesResponse Source #
Represents a response of the operation postFiles
.
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), PostFilesResponseError
is used.
PostFilesResponseError String | Means either no matching case available or a parse error |
PostFilesResponse200 File | Successful response. |
PostFilesResponseDefault Error | Error response. |
Instances
Eq PostFilesResponse Source # | |
Defined in StripeAPI.Operations.PostFiles (==) :: PostFilesResponse -> PostFilesResponse -> Bool # (/=) :: PostFilesResponse -> PostFilesResponse -> Bool # | |
Show PostFilesResponse Source # | |
Defined in StripeAPI.Operations.PostFiles showsPrec :: Int -> PostFilesResponse -> ShowS # show :: PostFilesResponse -> String # showList :: [PostFilesResponse] -> ShowS # |