stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostOrders

Description

Contains the different functions to run the operation postOrders

Synopsis

Documentation

postOrders Source #

Arguments

:: (MonadHTTP m, SecurityScheme s) 
=> Configuration s

The configuration to use in the request

-> PostOrdersRequestBody

The request body to send

-> m (Either HttpException (Response PostOrdersResponse))

Monad containing the result of the operation

POST /v1/orders

<p>Creates a new order object.</p>

postOrdersRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostOrdersRequestBody -> m (Either HttpException (Response ByteString)) Source #

POST /v1/orders

The same as postOrders but returns the raw ByteString

data PostOrdersRequestBody Source #

Defines the data type for the schema postOrdersRequestBody

Constructors

PostOrdersRequestBody 

Fields

data PostOrdersRequestBodyItems' Source #

Defines the data type for the schema postOrdersRequestBodyItems'

data PostOrdersRequestBodyItems'Type' Source #

Defines the enum schema postOrdersRequestBodyItems'Type'

data PostOrdersRequestBodyMetadata' Source #

Defines the data type for the schema postOrdersRequestBodyMetadata'

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 PostOrdersRequestBodyShipping' Source #

Defines the data type for the schema postOrdersRequestBodyShipping'

Shipping address for the order. Required if any of the SKUs are for products that have `shippable` set to true.

data PostOrdersRequestBodyShipping'Address' Source #

Defines the data type for the schema postOrdersRequestBodyShipping'Address'

Constructors

PostOrdersRequestBodyShipping'Address' 

Fields

data PostOrdersResponse Source #

Represents a response of the operation postOrders.

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), PostOrdersResponseError is used.

Constructors

PostOrdersResponseError String

Means either no matching case available or a parse error

PostOrdersResponse200 Order

Successful response.

PostOrdersResponseDefault Error

Error response.