stripe-scala
stripe-scala copied to clipboard
Scala library for the Stripe API
Hello, This lib is very nice since Stripe does not provide official Scala lib. I know there is not all endpoints implemented but how can i delete subscription for a...
Update the project to the current latest dependencies :)
This resolves #40 WIP: I still need to add unit and integration tests, but this implements the basic approach.
Hi! I was wondering if you had looked at also adding in the card brand (Visa, Mastercard, etc) from the charge's source. Quick glance at the code, it would be...
~I've noticed a few issues with the createPlan implementation:~ A [recent Major change](https://stripe.com/docs/upgrades#2018-02-05) in the Stripe API breaks the current Plans implementation: (1) We're missing the `product` parameter. From https://stripe.com/docs/api/java#create_plan-product:...
Looks like there is a possible copy-paste error in plans: https://github.com/mdedetrich/stripe-scala/blob/master/src/main/scala/org/mdedetrich/stripe/v1/Plans.scala#L317
At the moment, the API version is set in the settings of Stripe account which would break if someone uses a newer version.
For basic top level models (i.e. `org.mdedetrich.stripe.v1.Accounts`), these are currently represented as objects. While very convenient, it makes DI harder because we have to mention the dependencies in every internal...