stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.GetCreditNotesPreview

Description

Contains the different functions to run the operation getCreditNotesPreview

Synopsis

Documentation

getCreditNotesPreview Source #

Arguments

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

The configuration to use in the request

-> Maybe Integer

amount: The integer amount in **%s** representing the total amount of the credit note.

-> Maybe Integer

credit_amount: The integer amount in **%s** representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.

-> Maybe Text

expand: Specifies which fields in the response should be expanded.

-> Text

invoice: ID of the invoice. | Constraints: Maximum length of 5000

-> Maybe Text

lines: Line items that make up the credit note.

-> Maybe Text

memo: The credit note's memo appears on the credit note PDF. | Constraints: Maximum length of 5000

-> Maybe Text

metadata: 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`.

-> Maybe Integer

out_of_band_amount: The integer amount in **%s** representing the amount that is credited outside of Stripe.

-> Maybe Text

reason: Reason for issuing this credit note, one of `duplicate`, `fraudulent`, `order_change`, or `product_unsatisfactory`

-> Maybe Text

refund: ID of an existing refund to link this credit note to.

-> Maybe Integer

refund_amount: The integer amount in **%s** representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.

-> Maybe GetCreditNotesPreviewRequestBody

The request body to send

-> m (Either HttpException (Response GetCreditNotesPreviewResponse))

Monad containing the result of the operation

GET /v1/credit_notes/preview

<p>Get a preview of a credit note without creating it.</p>

data GetCreditNotesPreviewResponse Source #

Represents a response of the operation getCreditNotesPreview.

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

Constructors

GetCreditNotesPreviewResponseError String

Means either no matching case available or a parse error

GetCreditNotesPreviewResponse200 CreditNote

Successful response.

GetCreditNotesPreviewResponseDefault Error

Error response.