Liking cljdoc? Tell your friends :D

clj-stripe.charges

Functions for Stripe Charges API

Functions for Stripe Charges API
raw docstring

create-chargeclj

(create-charge money-quantity & extra-info)

Creates a new charge operation. Requires one money quantity (see common/money-quantity), and either a customer (see common/customer) or a card (see common/card). Optionally accepts a desciption (see common/description). Execute the operation using common/execute.

Creates a new charge operation.
Requires one money quantity (see common/money-quantity), and either a customer (see common/customer) or a card (see common/card).
Optionally accepts a desciption (see common/description).
Execute the operation using common/execute.
sourceraw docstring

create-refundclj

(create-refund charge-id)
(create-refund charge-id amount)

Creates a charge-refund operation. Requires the charge id (as a string). Optionally accepts the amount to be refunded (see common/amount). Execute the operation using common/execute.

Creates a charge-refund operation.
Requires the charge id (as a string).
Optionally accepts the amount to be refunded (see common/amount).
Execute the operation using common/execute.
sourceraw docstring

get-all-chargesclj

(get-all-charges & extra-info)

Creates a new get-all-charges operation. Optionally accepts a customer (see common/customer), offset and count (see common/offset, common/limit-count and common/position). Execute the operation using common/execute.

Creates a new get-all-charges operation.
Optionally accepts a customer (see common/customer), offset and count (see common/offset, common/limit-count and common/position).
Execute the operation using common/execute.
sourceraw docstring

get-chargeclj

(get-charge charge-id)

Creates a new get-charge operation. Requires a charge id as a string. Execute the operation using common/execute.

Creates a new get-charge operation.
Requires a charge id as a string.
Execute the operation using common/execute.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close