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

22 lines
511 B
Python

# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from typing_extensions import TYPE_CHECKING
from warnings import warn
warn(
"""
The stripe.api_resources.refund package is deprecated, please change your
imports to import from stripe directly.
From:
from stripe.api_resources.refund import Refund
To:
from stripe import Refund
""",
DeprecationWarning,
stacklevel=2,
)
if not TYPE_CHECKING:
from stripe._refund import ( # noqa
Refund,
)