stripe-scala
stripe-scala copied to clipboard
'Disputed' attribute on charge is deprecated in favor of 'dispute'
Charge objects in the Stripe API now have a dispute object instead of the disputed boolean:
https://groups.google.com/a/lists.stripe.com/forum/#!topic/api-discuss/dR3MCRKOtsc
The bindings need to be updated accordingly.
Any traction on the fix for this ?
Seeing the same issue
me too
Fixed the issue and changed the version to 1.1.3 in my fork: [email protected]:markusjura/stripe-scala.git
Repo available on: http://markusjura.github.com/stripe-scala
I think Option[String] = None is a better choice for the field.
The spec is: Charge object now has a dispute attribute, which is a dispute object hash (https://stripe.com/docs/api#dispute_object) if the charge has been disputed and null if it hasn't.