stripe-go
stripe-go copied to clipboard
Go library for the Stripe API.
## Proposed Feature After implementing the Golang SDK there could possibly be a better test suite that can be created. For instance the current issue I am having is mocking...
I'm new to Go, so apologies if this is a dumb idea. If the CRUD methods in `paymentintent/client.go` return a `stripe.Error`, shouldn't that be declared so that developers can see...
Can we call the equivalent of the stripe cli's `stripe listen --forward-to localhost:8080` from the Go SDK, particularly if I could just supply the secret key, and not need to...
The current logging interface does not seem to allow callers to inject structured fields, such as trace ids, into the log lines. While custom loggers are acceptable, only global instances...
I'm in the process of implementing webhooks, and in doing so noticed that all events are essentially unmarshalled into a `map[string]interface{}` type. This makes code messy, error-prone, and due to...
It'd be nice to parse timestamps into their time.Time during unmarshaling. I'd expect most people will be operating with the values as times (could be wrong) so most people are...
When I get a `customer`, and expand the `sources`; if the source is of type `Source`, it does not json.Marshal correctly. Here is some basic code demonstrating that the code...
## Summary Remove SKU resource for next major. ## Changelog * Remove `SKU` resource.
### Is your feature request related to a problem? Please describe. I asked to support developers on Discord about how to disable the billing threshold from the SubscriptionSchedulePhaseItemParams struct. The...
### Is your feature request related to a problem? Please describe. Writing unit tests for code that uses this SDK is sometimes difficult. Some functions returns concrete types without any...