Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Operations.PostFileLinks
Description
Contains the different functions to run the operation postFileLinks
Synopsis
- postFileLinks :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostFileLinksRequestBody -> m (Either HttpException (Response PostFileLinksResponse))
- postFileLinksRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostFileLinksRequestBody -> m (Either HttpException (Response ByteString))
- postFileLinksM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostFileLinksRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostFileLinksResponse))
- postFileLinksRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostFileLinksRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostFileLinksRequestBody = PostFileLinksRequestBody {}
- data PostFileLinksRequestBodyMetadata' = PostFileLinksRequestBodyMetadata' {
- data PostFileLinksResponse
Documentation
Arguments
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> PostFileLinksRequestBody | The request body to send |
-> m (Either HttpException (Response PostFileLinksResponse)) | Monad containing the result of the operation |
POST /v1/file_links
<p>Creates a new file link object.</p>
postFileLinksRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostFileLinksRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/file_links
The same as postFileLinks
but returns the raw ByteString
postFileLinksM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostFileLinksRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostFileLinksResponse)) Source #
POST /v1/file_links
Monadic version of postFileLinks
(use with runWithConfiguration
)
postFileLinksRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostFileLinksRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/file_links
Monadic version of postFileLinksRaw
(use with runWithConfiguration
)
data PostFileLinksRequestBody Source #
Defines the data type for the schema postFileLinksRequestBody
Constructors
PostFileLinksRequestBody | |
Fields
|
Instances
Eq PostFileLinksRequestBody Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods (==) :: PostFileLinksRequestBody -> PostFileLinksRequestBody -> Bool # (/=) :: PostFileLinksRequestBody -> PostFileLinksRequestBody -> Bool # | |
Show PostFileLinksRequestBody Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods showsPrec :: Int -> PostFileLinksRequestBody -> ShowS # show :: PostFileLinksRequestBody -> String # showList :: [PostFileLinksRequestBody] -> ShowS # | |
ToJSON PostFileLinksRequestBody Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods toJSON :: PostFileLinksRequestBody -> Value # toEncoding :: PostFileLinksRequestBody -> Encoding # toJSONList :: [PostFileLinksRequestBody] -> Value # | |
FromJSON PostFileLinksRequestBody Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods parseJSON :: Value -> Parser PostFileLinksRequestBody # parseJSONList :: Value -> Parser [PostFileLinksRequestBody] # |
data PostFileLinksRequestBodyMetadata' Source #
Defines the data type for the schema postFileLinksRequestBodyMetadata'
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`.
Constructors
PostFileLinksRequestBodyMetadata' | |
Instances
data PostFileLinksResponse Source #
Represents a response of the operation postFileLinks
.
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), PostFileLinksResponseError
is used.
Constructors
PostFileLinksResponseError String | Means either no matching case available or a parse error |
PostFileLinksResponse200 FileLink | Successful response. |
PostFileLinksResponseDefault Error | Error response. |
Instances
Eq PostFileLinksResponse Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods (==) :: PostFileLinksResponse -> PostFileLinksResponse -> Bool # (/=) :: PostFileLinksResponse -> PostFileLinksResponse -> Bool # | |
Show PostFileLinksResponse Source # | |
Defined in StripeAPI.Operations.PostFileLinks Methods showsPrec :: Int -> PostFileLinksResponse -> ShowS # show :: PostFileLinksResponse -> String # showList :: [PostFileLinksResponse] -> ShowS # |