2026-05-20 10:50:30 +00:00

16 lines
300 B
Python

from stripe._stripe_object import StripeObject
from warnings import warn
warn(
"""
The RecipientTransfer class is deprecated and will be removed in a future
""",
DeprecationWarning,
stacklevel=2,
)
class RecipientTransfer(StripeObject):
OBJECT_NAME = "recipient_transfer"