Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Operations.PostTerminalReaders
Description
Contains the different functions to run the operation postTerminalReaders
Synopsis
- postTerminalReaders :: forall m. MonadHTTP m => PostTerminalReadersRequestBody -> ClientT m (Response PostTerminalReadersResponse)
- data PostTerminalReadersRequestBody = PostTerminalReadersRequestBody {
- postTerminalReadersRequestBodyExpand :: Maybe [Text]
- postTerminalReadersRequestBodyLabel :: Maybe Text
- postTerminalReadersRequestBodyLocation :: Maybe Text
- postTerminalReadersRequestBodyMetadata :: Maybe PostTerminalReadersRequestBodyMetadata'Variants
- postTerminalReadersRequestBodyRegistrationCode :: Text
- mkPostTerminalReadersRequestBody :: Text -> PostTerminalReadersRequestBody
- data PostTerminalReadersRequestBodyMetadata'Variants
- data PostTerminalReadersResponse
Documentation
Arguments
:: forall m. MonadHTTP m | |
=> PostTerminalReadersRequestBody | The request body to send |
-> ClientT m (Response PostTerminalReadersResponse) | Monadic computation which returns the result of the operation |
POST /v1/terminal/readers
<p>Creates a new <code>Reader</code> object.</p>
data PostTerminalReadersRequestBody Source #
Defines the object schema located at paths./v1/terminal/readers.POST.requestBody.content.application/x-www-form-urlencoded.schema
in the specification.
Constructors
PostTerminalReadersRequestBody | |
Fields
|
Instances
mkPostTerminalReadersRequestBody Source #
Create a new PostTerminalReadersRequestBody
with all required fields.
data PostTerminalReadersRequestBodyMetadata'Variants Source #
Defines the oneOf schema located at paths./v1/terminal/readers.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.metadata.anyOf
in the specification.
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
PostTerminalReadersRequestBodyMetadata'EmptyString | Represents the JSON value |
PostTerminalReadersRequestBodyMetadata'Object Object |
Instances
data PostTerminalReadersResponse Source #
Represents a response of the operation postTerminalReaders
.
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), PostTerminalReadersResponseError
is used.
Constructors
PostTerminalReadersResponseError String | Means either no matching case available or a parse error |
PostTerminalReadersResponse200 Terminal'reader | Successful response. |
PostTerminalReadersResponseDefault Error | Error response. |
Instances
Eq PostTerminalReadersResponse Source # | |
Defined in StripeAPI.Operations.PostTerminalReaders Methods (==) :: PostTerminalReadersResponse -> PostTerminalReadersResponse -> Bool # (/=) :: PostTerminalReadersResponse -> PostTerminalReadersResponse -> Bool # | |
Show PostTerminalReadersResponse Source # | |
Defined in StripeAPI.Operations.PostTerminalReaders Methods showsPrec :: Int -> PostTerminalReadersResponse -> ShowS # show :: PostTerminalReadersResponse -> String # showList :: [PostTerminalReadersResponse] -> ShowS # |