Giter Club home page Giter Club logo

Comments (5)

danielchatfield avatar danielchatfield commented on August 28, 2024

The API does not accept an empty string for coupon, the correct way to delete a coupon as per the docs is to do customer.delete_discount(), this obviously doesn't work if the coupon hasn't been saved and you are just trying to remove it from the local object.

Originally I thought that customer._retrieve_params held the attributes that were returned from the API and you could therefore use this to distinguish between a property which is being changed and a property which is being added but this was wrong (after retrieving a customer it is empty).

I'm not sure of a good way of fixing this, everything I think of I can think of a case where it won't work or another issue it will introduce. IMO the issue stems from the delete_discount() method and really to delete the discount you should be setting it to None not calling a method but I don't see that changing as it is the same with the other client libraries.

from stripe-python.

kyleconroy avatar kyleconroy commented on August 28, 2024

@danielchatfield is correct. Setting the coupon to None or "" will not unset the coupon. You'll need to use the delete_discount method.

from stripe-python.

danielchatfield avatar danielchatfield commented on August 28, 2024

@kyleconroy the issue here is that the coupon was not valid and thus was not saved on the stripe servers. delete_discount fails here.

This is a valid bug.

from stripe-python.

kyleconroy avatar kyleconroy commented on August 28, 2024

Whoops, thanks @danielchatfield. I misread the beginning of the issue. Yes, this is a valid bug, as it shouldn't be possible to get a customer object into a state where it cannot be saved.

What if we added del support to Stripe objects?

customer.coupon = "invalid"
customer.save()
# InvalidRequestError: No such coupon: invalid

del customer.coupon
customer.save()

from stripe-python.

robbyt avatar robbyt commented on August 28, 2024

I haven't tested it, but does delattr work? https://docs.python.org/2/c-api/object.html#c.PyObject_DelAttr

from stripe-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.