Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions stripe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,10 @@ def add_beta_version(
OAuthErrorObject as OAuthErrorObject,
)
from stripe._event import Event as Event
from stripe._event_notification_handler import (
StripeEventNotificationHandler as StripeEventNotificationHandler,
UnhandledNotificationDetails as UnhandledNotificationDetails,
)
from stripe._event_service import EventService as EventService
from stripe._exchange_rate import ExchangeRate as ExchangeRate
from stripe._exchange_rate_service import (
Expand Down Expand Up @@ -784,6 +788,14 @@ def add_beta_version(
"ErrorObject": ("stripe._error_object", False),
"OAuthErrorObject": ("stripe._error_object", False),
"Event": ("stripe._event", False),
"StripeEventNotificationHandler": (
"stripe._event_notification_handler",
False,
),
"UnhandledNotificationDetails": (
"stripe._event_notification_handler",
False,
),
"EventService": ("stripe._event_service", False),
"ExchangeRate": ("stripe._exchange_rate", False),
"ExchangeRateService": ("stripe._exchange_rate_service", False),
Expand Down
Loading