Skip to content
Merged
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
48 changes: 48 additions & 0 deletions activitysmith_openapi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# coding: utf-8

# flake8: noqa

"""
ActivitySmith API

Send push notifications and Live Activities to your own devices via a single API key.

The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


__version__ = "0.1.0"

# import apis into sdk package
from activitysmith_openapi.api.live_activities_api import LiveActivitiesApi
from activitysmith_openapi.api.push_notifications_api import PushNotificationsApi

# import ApiClient
from activitysmith_openapi.api_response import ApiResponse
from activitysmith_openapi.api_client import ApiClient
from activitysmith_openapi.configuration import Configuration
from activitysmith_openapi.exceptions import OpenApiException
from activitysmith_openapi.exceptions import ApiTypeError
from activitysmith_openapi.exceptions import ApiValueError
from activitysmith_openapi.exceptions import ApiKeyError
from activitysmith_openapi.exceptions import ApiAttributeError
from activitysmith_openapi.exceptions import ApiException

# import models into sdk package
from activitysmith_openapi.models.content_state_end import ContentStateEnd
from activitysmith_openapi.models.content_state_start import ContentStateStart
from activitysmith_openapi.models.content_state_update import ContentStateUpdate
from activitysmith_openapi.models.live_activity_end_request import LiveActivityEndRequest
from activitysmith_openapi.models.live_activity_end_response import LiveActivityEndResponse
from activitysmith_openapi.models.live_activity_limit_error import LiveActivityLimitError
from activitysmith_openapi.models.live_activity_start_request import LiveActivityStartRequest
from activitysmith_openapi.models.live_activity_start_response import LiveActivityStartResponse
from activitysmith_openapi.models.live_activity_update_request import LiveActivityUpdateRequest
from activitysmith_openapi.models.live_activity_update_response import LiveActivityUpdateResponse
from activitysmith_openapi.models.push_notification_request import PushNotificationRequest
from activitysmith_openapi.models.push_notification_response import PushNotificationResponse
from activitysmith_openapi.models.rate_limit_error import RateLimitError
from activitysmith_openapi.models.send_push_notification429_response import SendPushNotification429Response
6 changes: 6 additions & 0 deletions activitysmith_openapi/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# flake8: noqa

# import apis into api package
from activitysmith_openapi.api.live_activities_api import LiveActivitiesApi
from activitysmith_openapi.api.push_notifications_api import PushNotificationsApi

Loading