条纹退款错误

Stripe Refunds Error

我正在使用带 Python 2.7 的 Stripe Python 库版本 1.23.0。当我尝试使用以下代码处理退款时

import stripe
stripe.api_key = <my_api_key>
refund = stripe.Refund.create(
        charge=payment_id.stripe_id
    )

我收到一个错误

'module' object has no attribute Refund

我检查了init文件,确实没有导入Refund

我检查了条纹支持,他们说

The Refund object was added on the 1.25.0 version of our library

我找不到任何关于如何在 1.23 版库中处理退款的文档

试试这个,

import stripe
stripe.api_key = <my_api_key>
resp = stripe.Charge.retrieve(charge_id)
resp.refund()