go.stripe icon indicating copy to clipboard operation
go.stripe copied to clipboard

a simple Credit Card processing library for Go using the Stripe API

Results 20 go.stripe issues
Sort by recently updated
recently updated
newest added

Uses build tags, so this should not impact current usage at all.

Two checks in plan_test.go compare a value with itself, instead of with the expected value: ``` /src/github.com/drone/go.stripe/plan_test.go:53:5: identical expressions on the left and right side of the '!=' operator /src/github.com/drone/go.stripe/plan_test.go:98:5:...

Previously DefaultCard was being parsed correctly on retrievalsbut was not allowed in updates. However, the Stripe API _does_ allow DefaultCard to be set on updates: https://stripe.com/docs/api#update_customer Includes tests, a typo...

I can read the default_card fine by retrieving a customer, but cannot update it even though that is legal: https://stripe.com/docs/api#update_customer. Fix coming.

In stripe.go there's a convenience constructor for most ...Client types, but there isn't one that says: Cards = new(CardClient) Any reason for that? I can submit a pull request fix...

... stripe customer (one off charges) the ability to send the charge receipt.

This allows the use of stripe connect application fees. Stripe connect uses the same API as normal stripe, but adds the ability to add an application fee to the charge...

Same thing than https://github.com/drone/go.stripe/pull/24 but on top of the master

Updating the invoice/invoiceitems field according to stripe changes.