stripeapi-1.0.0.0: Stripe-Library
Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostSkusId

Description

Contains the different functions to run the operation postSkusId

Synopsis

Documentation

postSkusId Source #

Arguments

:: forall m. MonadHTTP m 
=> Text

id | Constraints: Maximum length of 5000

-> Maybe PostSkusIdRequestBody

The request body to send

-> StripeT m (Response PostSkusIdResponse)

Monadic computation which returns the result of the operation

POST /v1/skus/{id}

<p>Updates the specific SKU by setting the values of the parameters passed. Any parameters not provided will be left unchanged.</p>

<p>Note that a SKU’s <code>attributes</code> are not editable. Instead, you would need to deactivate the existing SKU and create a new one with the new attribute values.</p>

data PostSkusIdRequestBody Source #

Defines the object schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema in the specification.

Constructors

PostSkusIdRequestBody 

Fields

data PostSkusIdRequestBodyInventory' Source #

Defines the object schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.inventory in the specification.

Description of the SKU's inventory.

data PostSkusIdRequestBodyInventory'Type' Source #

Defines the enum schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.inventory.properties.type in the specification.

Constructors

PostSkusIdRequestBodyInventory'Type'Other Value

This case is used if the value encountered during decoding does not match any of the provided cases in the specification.

PostSkusIdRequestBodyInventory'Type'Typed Text

This constructor can be used to send values to the server which are not present in the specification yet.

PostSkusIdRequestBodyInventory'Type'EnumBucket

Represents the JSON value "bucket"

PostSkusIdRequestBodyInventory'Type'EnumFinite

Represents the JSON value "finite"

PostSkusIdRequestBodyInventory'Type'EnumInfinite

Represents the JSON value "infinite"

data PostSkusIdRequestBodyInventory'Value' Source #

Defines the enum schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.inventory.properties.value in the specification.

Constructors

PostSkusIdRequestBodyInventory'Value'Other Value

This case is used if the value encountered during decoding does not match any of the provided cases in the specification.

PostSkusIdRequestBodyInventory'Value'Typed Text

This constructor can be used to send values to the server which are not present in the specification yet.

PostSkusIdRequestBodyInventory'Value'EnumEmptyString

Represents the JSON value ""

PostSkusIdRequestBodyInventory'Value'EnumInStock

Represents the JSON value "in_stock"

PostSkusIdRequestBodyInventory'Value'EnumLimited

Represents the JSON value "limited"

PostSkusIdRequestBodyInventory'Value'EnumOutOfStock

Represents the JSON value "out_of_stock"

data PostSkusIdRequestBodyMetadata'Variants Source #

Defines the oneOf schema located at paths./v1/skus/{id}.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`.

data PostSkusIdRequestBodyPackageDimensions'OneOf1 Source #

Defines the object schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.package_dimensions.anyOf in the specification.

data PostSkusIdRequestBodyPackageDimensions'Variants Source #

Defines the oneOf schema located at paths./v1/skus/{id}.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.package_dimensions.anyOf in the specification.

The dimensions of this SKU for shipping purposes.

data PostSkusIdResponse Source #

Represents a response of the operation postSkusId.

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

Constructors

PostSkusIdResponseError String

Means either no matching case available or a parse error

PostSkusIdResponse200 Sku

Successful response.

PostSkusIdResponseDefault Error

Error response.