sendmux-mailbox 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sendmux_mailbox-1.0.0/.gitignore +14 -0
- sendmux_mailbox-1.0.0/CHANGELOG.md +8 -0
- sendmux_mailbox-1.0.0/PKG-INFO +17 -0
- sendmux_mailbox-1.0.0/README.md +4 -0
- sendmux_mailbox-1.0.0/pyproject.toml +27 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/__init__.py +305 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/api/__init__.py +5 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/api/mailbox_api_api.py +13462 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/api_client.py +804 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/api_response.py +21 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/client.py +46 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/configuration.py +606 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/exceptions.py +218 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/__init__.py +141 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/api_error.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/api_error_detail.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/api_error_error.py +113 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/api_error_meta.py +88 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/batch_delete_mailbox_messages_body.py +93 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/batch_update_mailbox_messages_body.py +97 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/create_mailbox_folder_body.py +97 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/cursor_pagination.py +90 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox.py +119 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_address.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_attachment.py +120 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_attachment_upload_result.py +94 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_attachment_upload_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_delete_messages_result.py +106 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_delete_messages_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_get_body.py +147 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_get_item.py +114 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_get_result.py +104 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_get_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_get_result_states.py +93 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_message_failure.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_message_states.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_update_messages_result.py +106 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_batch_update_messages_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_changes.py +105 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_changes_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_content_headers.py +121 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_content_headers_full_inner.py +90 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_content_headers_selected.py +107 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder.py +117 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_deleted_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_deleted_response_all_of_data.py +90 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_query_changes.py +116 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_query_changes_added_inner.py +90 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_query_changes_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_folder_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_get_changes200_response.py +134 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_identity.py +117 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_identity_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_identity_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_me.py +121 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_me_item_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message.py +200 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content.py +142 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_body.py +132 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_dates.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_participants.py +129 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_response_all_of_data.py +142 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_content_states.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_count.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_count_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_deleted_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_detail_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_flags.py +94 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_query_changes.py +116 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_query_changes_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_summary.py +176 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_summary_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_message_summary_from.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_quota.py +121 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_quota_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_raw_body.py +116 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_raw_body_body.py +109 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_raw_body_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_raw_body_response_all_of_data.py +116 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_realtime_event.py +147 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_realtime_message.py +199 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_realtime_message_all_of_body.py +104 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_search_snippet.py +102 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_search_snippets_result.py +105 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_search_snippets_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_send_result_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_send_scope.py +99 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session.py +122 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities.py +134 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_attachments.py +98 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_folders.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_identities.py +96 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_messages.py +122 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_quotas.py +94 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_submissions.py +94 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_sync.py +108 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_capabilities_threads.py +96 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_endpoints.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_gated.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_limits.py +106 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_mailbox.py +97 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_session_states.py +98 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission.py +148 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_delivery_status.py +109 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_envelope.py +107 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_envelope_address.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_envelope_rcpt_to_inner.py +95 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_submission_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread.py +127 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_content_meta.py +106 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_content_meta_states.py +102 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_content_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_content_response_all_of_data.py +142 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_detail_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_summary.py +125 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_summary_cursor_list_response.py +110 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_summary_last_message.py +176 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_thread_summary_states.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_typed_changes.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_typed_changes_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_typed_changes_types.py +117 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_usage.py +102 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_usage_resource.py +130 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_usage_response.py +100 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/mailbox_usage_states.py +93 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/patch_mailbox_folder_body.py +97 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/patch_mailbox_message_body.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/response_meta.py +88 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/send_mailbox_message_body.py +147 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/send_mailbox_message_body_attachments_inner.py +134 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/send_mailbox_message_body_attachments_inner_any_of.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/send_mailbox_message_body_attachments_inner_any_of1.py +92 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/send_mailbox_message_result.py +97 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/success_envelope.py +90 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/models/update_mailbox_identity_body.py +108 -0
- sendmux_mailbox-1.0.0/sendmux_mailbox/rest.py +263 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sendmux-mailbox
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Generated Python client for the Sendmux Mailbox API.
|
|
5
|
+
Project-URL: Repository, https://github.com/Sendmux/sendmux-sdk
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: pydantic<3,>=2
|
|
8
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
9
|
+
Requires-Dist: sendmux-core<2.0.0,>=1.0.0
|
|
10
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
11
|
+
Requires-Dist: urllib3<3,>=2.3.0
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# sendmux-mailbox
|
|
15
|
+
|
|
16
|
+
Generated Python client for the Sendmux Mailbox API.
|
|
17
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.27"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sendmux-mailbox"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Generated Python client for the Sendmux Mailbox API."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"pydantic>=2,<3",
|
|
13
|
+
"python-dateutil>=2.8.2",
|
|
14
|
+
"sendmux-core>=1.0.0,<2.0.0",
|
|
15
|
+
"typing-extensions>=4.7.1",
|
|
16
|
+
"urllib3>=2.3.0,<3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Repository = "https://github.com/Sendmux/sendmux-sdk"
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.sdist]
|
|
23
|
+
core-metadata-version = "2.4"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
core-metadata-version = "2.4"
|
|
27
|
+
packages = ["sendmux_mailbox"]
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Sendmux API
|
|
7
|
+
|
|
8
|
+
Programmatic access to your Sendmux email infrastructure.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "1.0.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"MailboxAPIApi",
|
|
22
|
+
"ApiResponse",
|
|
23
|
+
"ApiClient",
|
|
24
|
+
"Configuration",
|
|
25
|
+
"OpenApiException",
|
|
26
|
+
"ApiTypeError",
|
|
27
|
+
"ApiValueError",
|
|
28
|
+
"ApiKeyError",
|
|
29
|
+
"ApiAttributeError",
|
|
30
|
+
"ApiException",
|
|
31
|
+
"ApiError",
|
|
32
|
+
"ApiErrorDetail",
|
|
33
|
+
"ApiErrorError",
|
|
34
|
+
"ApiErrorMeta",
|
|
35
|
+
"BatchDeleteMailboxMessagesBody",
|
|
36
|
+
"BatchUpdateMailboxMessagesBody",
|
|
37
|
+
"CreateMailboxFolderBody",
|
|
38
|
+
"CursorPagination",
|
|
39
|
+
"Mailbox",
|
|
40
|
+
"MailboxAddress",
|
|
41
|
+
"MailboxAttachment",
|
|
42
|
+
"MailboxAttachmentUploadResult",
|
|
43
|
+
"MailboxAttachmentUploadResultResponse",
|
|
44
|
+
"MailboxBatchDeleteMessagesResult",
|
|
45
|
+
"MailboxBatchDeleteMessagesResultResponse",
|
|
46
|
+
"MailboxBatchGetBody",
|
|
47
|
+
"MailboxBatchGetItem",
|
|
48
|
+
"MailboxBatchGetResult",
|
|
49
|
+
"MailboxBatchGetResultResponse",
|
|
50
|
+
"MailboxBatchGetResultStates",
|
|
51
|
+
"MailboxBatchMessageFailure",
|
|
52
|
+
"MailboxBatchMessageStates",
|
|
53
|
+
"MailboxBatchUpdateMessagesResult",
|
|
54
|
+
"MailboxBatchUpdateMessagesResultResponse",
|
|
55
|
+
"MailboxChanges",
|
|
56
|
+
"MailboxChangesResponse",
|
|
57
|
+
"MailboxContentHeaders",
|
|
58
|
+
"MailboxContentHeadersFullInner",
|
|
59
|
+
"MailboxContentHeadersSelected",
|
|
60
|
+
"MailboxFolder",
|
|
61
|
+
"MailboxFolderCursorListResponse",
|
|
62
|
+
"MailboxFolderDeletedResponse",
|
|
63
|
+
"MailboxFolderDeletedResponseAllOfData",
|
|
64
|
+
"MailboxFolderQueryChanges",
|
|
65
|
+
"MailboxFolderQueryChangesAddedInner",
|
|
66
|
+
"MailboxFolderQueryChangesResponse",
|
|
67
|
+
"MailboxFolderResponse",
|
|
68
|
+
"MailboxGetChanges200Response",
|
|
69
|
+
"MailboxIdentity",
|
|
70
|
+
"MailboxIdentityCursorListResponse",
|
|
71
|
+
"MailboxIdentityResponse",
|
|
72
|
+
"MailboxMe",
|
|
73
|
+
"MailboxMeItemResponse",
|
|
74
|
+
"MailboxMessage",
|
|
75
|
+
"MailboxMessageContent",
|
|
76
|
+
"MailboxMessageContentBody",
|
|
77
|
+
"MailboxMessageContentDates",
|
|
78
|
+
"MailboxMessageContentParticipants",
|
|
79
|
+
"MailboxMessageContentResponse",
|
|
80
|
+
"MailboxMessageContentResponseAllOfData",
|
|
81
|
+
"MailboxMessageContentStates",
|
|
82
|
+
"MailboxMessageCount",
|
|
83
|
+
"MailboxMessageCountResponse",
|
|
84
|
+
"MailboxMessageDeletedResponse",
|
|
85
|
+
"MailboxMessageDetailResponse",
|
|
86
|
+
"MailboxMessageFlags",
|
|
87
|
+
"MailboxMessageQueryChanges",
|
|
88
|
+
"MailboxMessageQueryChangesResponse",
|
|
89
|
+
"MailboxMessageSummary",
|
|
90
|
+
"MailboxMessageSummaryCursorListResponse",
|
|
91
|
+
"MailboxMessageSummaryFrom",
|
|
92
|
+
"MailboxQuota",
|
|
93
|
+
"MailboxQuotaCursorListResponse",
|
|
94
|
+
"MailboxRawBody",
|
|
95
|
+
"MailboxRawBodyBody",
|
|
96
|
+
"MailboxRawBodyResponse",
|
|
97
|
+
"MailboxRawBodyResponseAllOfData",
|
|
98
|
+
"MailboxRealtimeEvent",
|
|
99
|
+
"MailboxRealtimeMessage",
|
|
100
|
+
"MailboxRealtimeMessageAllOfBody",
|
|
101
|
+
"MailboxSearchSnippet",
|
|
102
|
+
"MailboxSearchSnippetsResult",
|
|
103
|
+
"MailboxSearchSnippetsResultResponse",
|
|
104
|
+
"MailboxSendResultResponse",
|
|
105
|
+
"MailboxSendScope",
|
|
106
|
+
"MailboxSession",
|
|
107
|
+
"MailboxSessionCapabilities",
|
|
108
|
+
"MailboxSessionCapabilitiesAttachments",
|
|
109
|
+
"MailboxSessionCapabilitiesFolders",
|
|
110
|
+
"MailboxSessionCapabilitiesIdentities",
|
|
111
|
+
"MailboxSessionCapabilitiesMessages",
|
|
112
|
+
"MailboxSessionCapabilitiesQuotas",
|
|
113
|
+
"MailboxSessionCapabilitiesSubmissions",
|
|
114
|
+
"MailboxSessionCapabilitiesSync",
|
|
115
|
+
"MailboxSessionCapabilitiesThreads",
|
|
116
|
+
"MailboxSessionEndpoints",
|
|
117
|
+
"MailboxSessionGated",
|
|
118
|
+
"MailboxSessionLimits",
|
|
119
|
+
"MailboxSessionMailbox",
|
|
120
|
+
"MailboxSessionResponse",
|
|
121
|
+
"MailboxSessionStates",
|
|
122
|
+
"MailboxSubmission",
|
|
123
|
+
"MailboxSubmissionCursorListResponse",
|
|
124
|
+
"MailboxSubmissionDeliveryStatus",
|
|
125
|
+
"MailboxSubmissionEnvelope",
|
|
126
|
+
"MailboxSubmissionEnvelopeAddress",
|
|
127
|
+
"MailboxSubmissionEnvelopeRcptToInner",
|
|
128
|
+
"MailboxSubmissionResponse",
|
|
129
|
+
"MailboxThread",
|
|
130
|
+
"MailboxThreadContentMeta",
|
|
131
|
+
"MailboxThreadContentMetaStates",
|
|
132
|
+
"MailboxThreadContentResponse",
|
|
133
|
+
"MailboxThreadContentResponseAllOfData",
|
|
134
|
+
"MailboxThreadDetailResponse",
|
|
135
|
+
"MailboxThreadSummary",
|
|
136
|
+
"MailboxThreadSummaryCursorListResponse",
|
|
137
|
+
"MailboxThreadSummaryLastMessage",
|
|
138
|
+
"MailboxThreadSummaryStates",
|
|
139
|
+
"MailboxTypedChanges",
|
|
140
|
+
"MailboxTypedChangesResponse",
|
|
141
|
+
"MailboxTypedChangesTypes",
|
|
142
|
+
"MailboxUsage",
|
|
143
|
+
"MailboxUsageResource",
|
|
144
|
+
"MailboxUsageResponse",
|
|
145
|
+
"MailboxUsageStates",
|
|
146
|
+
"PatchMailboxFolderBody",
|
|
147
|
+
"PatchMailboxMessageBody",
|
|
148
|
+
"ResponseMeta",
|
|
149
|
+
"SendMailboxMessageBody",
|
|
150
|
+
"SendMailboxMessageBodyAttachmentsInner",
|
|
151
|
+
"SendMailboxMessageBodyAttachmentsInnerAnyOf",
|
|
152
|
+
"SendMailboxMessageBodyAttachmentsInnerAnyOf1",
|
|
153
|
+
"SendMailboxMessageResult",
|
|
154
|
+
"SuccessEnvelope",
|
|
155
|
+
"UpdateMailboxIdentityBody",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
# import apis into sdk package
|
|
159
|
+
from sendmux_mailbox.api.mailbox_api_api import MailboxAPIApi as MailboxAPIApi
|
|
160
|
+
|
|
161
|
+
# import ApiClient
|
|
162
|
+
from sendmux_mailbox.api_response import ApiResponse as ApiResponse
|
|
163
|
+
from sendmux_mailbox.api_client import ApiClient as ApiClient
|
|
164
|
+
from sendmux_mailbox.configuration import Configuration as Configuration
|
|
165
|
+
from sendmux_mailbox.exceptions import OpenApiException as OpenApiException
|
|
166
|
+
from sendmux_mailbox.exceptions import ApiTypeError as ApiTypeError
|
|
167
|
+
from sendmux_mailbox.exceptions import ApiValueError as ApiValueError
|
|
168
|
+
from sendmux_mailbox.exceptions import ApiKeyError as ApiKeyError
|
|
169
|
+
from sendmux_mailbox.exceptions import ApiAttributeError as ApiAttributeError
|
|
170
|
+
from sendmux_mailbox.exceptions import ApiException as ApiException
|
|
171
|
+
|
|
172
|
+
# import models into sdk package
|
|
173
|
+
from sendmux_mailbox.models.api_error import ApiError as ApiError
|
|
174
|
+
from sendmux_mailbox.models.api_error_detail import ApiErrorDetail as ApiErrorDetail
|
|
175
|
+
from sendmux_mailbox.models.api_error_error import ApiErrorError as ApiErrorError
|
|
176
|
+
from sendmux_mailbox.models.api_error_meta import ApiErrorMeta as ApiErrorMeta
|
|
177
|
+
from sendmux_mailbox.models.batch_delete_mailbox_messages_body import BatchDeleteMailboxMessagesBody as BatchDeleteMailboxMessagesBody
|
|
178
|
+
from sendmux_mailbox.models.batch_update_mailbox_messages_body import BatchUpdateMailboxMessagesBody as BatchUpdateMailboxMessagesBody
|
|
179
|
+
from sendmux_mailbox.models.create_mailbox_folder_body import CreateMailboxFolderBody as CreateMailboxFolderBody
|
|
180
|
+
from sendmux_mailbox.models.cursor_pagination import CursorPagination as CursorPagination
|
|
181
|
+
from sendmux_mailbox.models.mailbox import Mailbox as Mailbox
|
|
182
|
+
from sendmux_mailbox.models.mailbox_address import MailboxAddress as MailboxAddress
|
|
183
|
+
from sendmux_mailbox.models.mailbox_attachment import MailboxAttachment as MailboxAttachment
|
|
184
|
+
from sendmux_mailbox.models.mailbox_attachment_upload_result import MailboxAttachmentUploadResult as MailboxAttachmentUploadResult
|
|
185
|
+
from sendmux_mailbox.models.mailbox_attachment_upload_result_response import MailboxAttachmentUploadResultResponse as MailboxAttachmentUploadResultResponse
|
|
186
|
+
from sendmux_mailbox.models.mailbox_batch_delete_messages_result import MailboxBatchDeleteMessagesResult as MailboxBatchDeleteMessagesResult
|
|
187
|
+
from sendmux_mailbox.models.mailbox_batch_delete_messages_result_response import MailboxBatchDeleteMessagesResultResponse as MailboxBatchDeleteMessagesResultResponse
|
|
188
|
+
from sendmux_mailbox.models.mailbox_batch_get_body import MailboxBatchGetBody as MailboxBatchGetBody
|
|
189
|
+
from sendmux_mailbox.models.mailbox_batch_get_item import MailboxBatchGetItem as MailboxBatchGetItem
|
|
190
|
+
from sendmux_mailbox.models.mailbox_batch_get_result import MailboxBatchGetResult as MailboxBatchGetResult
|
|
191
|
+
from sendmux_mailbox.models.mailbox_batch_get_result_response import MailboxBatchGetResultResponse as MailboxBatchGetResultResponse
|
|
192
|
+
from sendmux_mailbox.models.mailbox_batch_get_result_states import MailboxBatchGetResultStates as MailboxBatchGetResultStates
|
|
193
|
+
from sendmux_mailbox.models.mailbox_batch_message_failure import MailboxBatchMessageFailure as MailboxBatchMessageFailure
|
|
194
|
+
from sendmux_mailbox.models.mailbox_batch_message_states import MailboxBatchMessageStates as MailboxBatchMessageStates
|
|
195
|
+
from sendmux_mailbox.models.mailbox_batch_update_messages_result import MailboxBatchUpdateMessagesResult as MailboxBatchUpdateMessagesResult
|
|
196
|
+
from sendmux_mailbox.models.mailbox_batch_update_messages_result_response import MailboxBatchUpdateMessagesResultResponse as MailboxBatchUpdateMessagesResultResponse
|
|
197
|
+
from sendmux_mailbox.models.mailbox_changes import MailboxChanges as MailboxChanges
|
|
198
|
+
from sendmux_mailbox.models.mailbox_changes_response import MailboxChangesResponse as MailboxChangesResponse
|
|
199
|
+
from sendmux_mailbox.models.mailbox_content_headers import MailboxContentHeaders as MailboxContentHeaders
|
|
200
|
+
from sendmux_mailbox.models.mailbox_content_headers_full_inner import MailboxContentHeadersFullInner as MailboxContentHeadersFullInner
|
|
201
|
+
from sendmux_mailbox.models.mailbox_content_headers_selected import MailboxContentHeadersSelected as MailboxContentHeadersSelected
|
|
202
|
+
from sendmux_mailbox.models.mailbox_folder import MailboxFolder as MailboxFolder
|
|
203
|
+
from sendmux_mailbox.models.mailbox_folder_cursor_list_response import MailboxFolderCursorListResponse as MailboxFolderCursorListResponse
|
|
204
|
+
from sendmux_mailbox.models.mailbox_folder_deleted_response import MailboxFolderDeletedResponse as MailboxFolderDeletedResponse
|
|
205
|
+
from sendmux_mailbox.models.mailbox_folder_deleted_response_all_of_data import MailboxFolderDeletedResponseAllOfData as MailboxFolderDeletedResponseAllOfData
|
|
206
|
+
from sendmux_mailbox.models.mailbox_folder_query_changes import MailboxFolderQueryChanges as MailboxFolderQueryChanges
|
|
207
|
+
from sendmux_mailbox.models.mailbox_folder_query_changes_added_inner import MailboxFolderQueryChangesAddedInner as MailboxFolderQueryChangesAddedInner
|
|
208
|
+
from sendmux_mailbox.models.mailbox_folder_query_changes_response import MailboxFolderQueryChangesResponse as MailboxFolderQueryChangesResponse
|
|
209
|
+
from sendmux_mailbox.models.mailbox_folder_response import MailboxFolderResponse as MailboxFolderResponse
|
|
210
|
+
from sendmux_mailbox.models.mailbox_get_changes200_response import MailboxGetChanges200Response as MailboxGetChanges200Response
|
|
211
|
+
from sendmux_mailbox.models.mailbox_identity import MailboxIdentity as MailboxIdentity
|
|
212
|
+
from sendmux_mailbox.models.mailbox_identity_cursor_list_response import MailboxIdentityCursorListResponse as MailboxIdentityCursorListResponse
|
|
213
|
+
from sendmux_mailbox.models.mailbox_identity_response import MailboxIdentityResponse as MailboxIdentityResponse
|
|
214
|
+
from sendmux_mailbox.models.mailbox_me import MailboxMe as MailboxMe
|
|
215
|
+
from sendmux_mailbox.models.mailbox_me_item_response import MailboxMeItemResponse as MailboxMeItemResponse
|
|
216
|
+
from sendmux_mailbox.models.mailbox_message import MailboxMessage as MailboxMessage
|
|
217
|
+
from sendmux_mailbox.models.mailbox_message_content import MailboxMessageContent as MailboxMessageContent
|
|
218
|
+
from sendmux_mailbox.models.mailbox_message_content_body import MailboxMessageContentBody as MailboxMessageContentBody
|
|
219
|
+
from sendmux_mailbox.models.mailbox_message_content_dates import MailboxMessageContentDates as MailboxMessageContentDates
|
|
220
|
+
from sendmux_mailbox.models.mailbox_message_content_participants import MailboxMessageContentParticipants as MailboxMessageContentParticipants
|
|
221
|
+
from sendmux_mailbox.models.mailbox_message_content_response import MailboxMessageContentResponse as MailboxMessageContentResponse
|
|
222
|
+
from sendmux_mailbox.models.mailbox_message_content_response_all_of_data import MailboxMessageContentResponseAllOfData as MailboxMessageContentResponseAllOfData
|
|
223
|
+
from sendmux_mailbox.models.mailbox_message_content_states import MailboxMessageContentStates as MailboxMessageContentStates
|
|
224
|
+
from sendmux_mailbox.models.mailbox_message_count import MailboxMessageCount as MailboxMessageCount
|
|
225
|
+
from sendmux_mailbox.models.mailbox_message_count_response import MailboxMessageCountResponse as MailboxMessageCountResponse
|
|
226
|
+
from sendmux_mailbox.models.mailbox_message_deleted_response import MailboxMessageDeletedResponse as MailboxMessageDeletedResponse
|
|
227
|
+
from sendmux_mailbox.models.mailbox_message_detail_response import MailboxMessageDetailResponse as MailboxMessageDetailResponse
|
|
228
|
+
from sendmux_mailbox.models.mailbox_message_flags import MailboxMessageFlags as MailboxMessageFlags
|
|
229
|
+
from sendmux_mailbox.models.mailbox_message_query_changes import MailboxMessageQueryChanges as MailboxMessageQueryChanges
|
|
230
|
+
from sendmux_mailbox.models.mailbox_message_query_changes_response import MailboxMessageQueryChangesResponse as MailboxMessageQueryChangesResponse
|
|
231
|
+
from sendmux_mailbox.models.mailbox_message_summary import MailboxMessageSummary as MailboxMessageSummary
|
|
232
|
+
from sendmux_mailbox.models.mailbox_message_summary_cursor_list_response import MailboxMessageSummaryCursorListResponse as MailboxMessageSummaryCursorListResponse
|
|
233
|
+
from sendmux_mailbox.models.mailbox_message_summary_from import MailboxMessageSummaryFrom as MailboxMessageSummaryFrom
|
|
234
|
+
from sendmux_mailbox.models.mailbox_quota import MailboxQuota as MailboxQuota
|
|
235
|
+
from sendmux_mailbox.models.mailbox_quota_cursor_list_response import MailboxQuotaCursorListResponse as MailboxQuotaCursorListResponse
|
|
236
|
+
from sendmux_mailbox.models.mailbox_raw_body import MailboxRawBody as MailboxRawBody
|
|
237
|
+
from sendmux_mailbox.models.mailbox_raw_body_body import MailboxRawBodyBody as MailboxRawBodyBody
|
|
238
|
+
from sendmux_mailbox.models.mailbox_raw_body_response import MailboxRawBodyResponse as MailboxRawBodyResponse
|
|
239
|
+
from sendmux_mailbox.models.mailbox_raw_body_response_all_of_data import MailboxRawBodyResponseAllOfData as MailboxRawBodyResponseAllOfData
|
|
240
|
+
from sendmux_mailbox.models.mailbox_realtime_event import MailboxRealtimeEvent as MailboxRealtimeEvent
|
|
241
|
+
from sendmux_mailbox.models.mailbox_realtime_message import MailboxRealtimeMessage as MailboxRealtimeMessage
|
|
242
|
+
from sendmux_mailbox.models.mailbox_realtime_message_all_of_body import MailboxRealtimeMessageAllOfBody as MailboxRealtimeMessageAllOfBody
|
|
243
|
+
from sendmux_mailbox.models.mailbox_search_snippet import MailboxSearchSnippet as MailboxSearchSnippet
|
|
244
|
+
from sendmux_mailbox.models.mailbox_search_snippets_result import MailboxSearchSnippetsResult as MailboxSearchSnippetsResult
|
|
245
|
+
from sendmux_mailbox.models.mailbox_search_snippets_result_response import MailboxSearchSnippetsResultResponse as MailboxSearchSnippetsResultResponse
|
|
246
|
+
from sendmux_mailbox.models.mailbox_send_result_response import MailboxSendResultResponse as MailboxSendResultResponse
|
|
247
|
+
from sendmux_mailbox.models.mailbox_send_scope import MailboxSendScope as MailboxSendScope
|
|
248
|
+
from sendmux_mailbox.models.mailbox_session import MailboxSession as MailboxSession
|
|
249
|
+
from sendmux_mailbox.models.mailbox_session_capabilities import MailboxSessionCapabilities as MailboxSessionCapabilities
|
|
250
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_attachments import MailboxSessionCapabilitiesAttachments as MailboxSessionCapabilitiesAttachments
|
|
251
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_folders import MailboxSessionCapabilitiesFolders as MailboxSessionCapabilitiesFolders
|
|
252
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_identities import MailboxSessionCapabilitiesIdentities as MailboxSessionCapabilitiesIdentities
|
|
253
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_messages import MailboxSessionCapabilitiesMessages as MailboxSessionCapabilitiesMessages
|
|
254
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_quotas import MailboxSessionCapabilitiesQuotas as MailboxSessionCapabilitiesQuotas
|
|
255
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_submissions import MailboxSessionCapabilitiesSubmissions as MailboxSessionCapabilitiesSubmissions
|
|
256
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_sync import MailboxSessionCapabilitiesSync as MailboxSessionCapabilitiesSync
|
|
257
|
+
from sendmux_mailbox.models.mailbox_session_capabilities_threads import MailboxSessionCapabilitiesThreads as MailboxSessionCapabilitiesThreads
|
|
258
|
+
from sendmux_mailbox.models.mailbox_session_endpoints import MailboxSessionEndpoints as MailboxSessionEndpoints
|
|
259
|
+
from sendmux_mailbox.models.mailbox_session_gated import MailboxSessionGated as MailboxSessionGated
|
|
260
|
+
from sendmux_mailbox.models.mailbox_session_limits import MailboxSessionLimits as MailboxSessionLimits
|
|
261
|
+
from sendmux_mailbox.models.mailbox_session_mailbox import MailboxSessionMailbox as MailboxSessionMailbox
|
|
262
|
+
from sendmux_mailbox.models.mailbox_session_response import MailboxSessionResponse as MailboxSessionResponse
|
|
263
|
+
from sendmux_mailbox.models.mailbox_session_states import MailboxSessionStates as MailboxSessionStates
|
|
264
|
+
from sendmux_mailbox.models.mailbox_submission import MailboxSubmission as MailboxSubmission
|
|
265
|
+
from sendmux_mailbox.models.mailbox_submission_cursor_list_response import MailboxSubmissionCursorListResponse as MailboxSubmissionCursorListResponse
|
|
266
|
+
from sendmux_mailbox.models.mailbox_submission_delivery_status import MailboxSubmissionDeliveryStatus as MailboxSubmissionDeliveryStatus
|
|
267
|
+
from sendmux_mailbox.models.mailbox_submission_envelope import MailboxSubmissionEnvelope as MailboxSubmissionEnvelope
|
|
268
|
+
from sendmux_mailbox.models.mailbox_submission_envelope_address import MailboxSubmissionEnvelopeAddress as MailboxSubmissionEnvelopeAddress
|
|
269
|
+
from sendmux_mailbox.models.mailbox_submission_envelope_rcpt_to_inner import MailboxSubmissionEnvelopeRcptToInner as MailboxSubmissionEnvelopeRcptToInner
|
|
270
|
+
from sendmux_mailbox.models.mailbox_submission_response import MailboxSubmissionResponse as MailboxSubmissionResponse
|
|
271
|
+
from sendmux_mailbox.models.mailbox_thread import MailboxThread as MailboxThread
|
|
272
|
+
from sendmux_mailbox.models.mailbox_thread_content_meta import MailboxThreadContentMeta as MailboxThreadContentMeta
|
|
273
|
+
from sendmux_mailbox.models.mailbox_thread_content_meta_states import MailboxThreadContentMetaStates as MailboxThreadContentMetaStates
|
|
274
|
+
from sendmux_mailbox.models.mailbox_thread_content_response import MailboxThreadContentResponse as MailboxThreadContentResponse
|
|
275
|
+
from sendmux_mailbox.models.mailbox_thread_content_response_all_of_data import MailboxThreadContentResponseAllOfData as MailboxThreadContentResponseAllOfData
|
|
276
|
+
from sendmux_mailbox.models.mailbox_thread_detail_response import MailboxThreadDetailResponse as MailboxThreadDetailResponse
|
|
277
|
+
from sendmux_mailbox.models.mailbox_thread_summary import MailboxThreadSummary as MailboxThreadSummary
|
|
278
|
+
from sendmux_mailbox.models.mailbox_thread_summary_cursor_list_response import MailboxThreadSummaryCursorListResponse as MailboxThreadSummaryCursorListResponse
|
|
279
|
+
from sendmux_mailbox.models.mailbox_thread_summary_last_message import MailboxThreadSummaryLastMessage as MailboxThreadSummaryLastMessage
|
|
280
|
+
from sendmux_mailbox.models.mailbox_thread_summary_states import MailboxThreadSummaryStates as MailboxThreadSummaryStates
|
|
281
|
+
from sendmux_mailbox.models.mailbox_typed_changes import MailboxTypedChanges as MailboxTypedChanges
|
|
282
|
+
from sendmux_mailbox.models.mailbox_typed_changes_response import MailboxTypedChangesResponse as MailboxTypedChangesResponse
|
|
283
|
+
from sendmux_mailbox.models.mailbox_typed_changes_types import MailboxTypedChangesTypes as MailboxTypedChangesTypes
|
|
284
|
+
from sendmux_mailbox.models.mailbox_usage import MailboxUsage as MailboxUsage
|
|
285
|
+
from sendmux_mailbox.models.mailbox_usage_resource import MailboxUsageResource as MailboxUsageResource
|
|
286
|
+
from sendmux_mailbox.models.mailbox_usage_response import MailboxUsageResponse as MailboxUsageResponse
|
|
287
|
+
from sendmux_mailbox.models.mailbox_usage_states import MailboxUsageStates as MailboxUsageStates
|
|
288
|
+
from sendmux_mailbox.models.patch_mailbox_folder_body import PatchMailboxFolderBody as PatchMailboxFolderBody
|
|
289
|
+
from sendmux_mailbox.models.patch_mailbox_message_body import PatchMailboxMessageBody as PatchMailboxMessageBody
|
|
290
|
+
from sendmux_mailbox.models.response_meta import ResponseMeta as ResponseMeta
|
|
291
|
+
from sendmux_mailbox.models.send_mailbox_message_body import SendMailboxMessageBody as SendMailboxMessageBody
|
|
292
|
+
from sendmux_mailbox.models.send_mailbox_message_body_attachments_inner import SendMailboxMessageBodyAttachmentsInner as SendMailboxMessageBodyAttachmentsInner
|
|
293
|
+
from sendmux_mailbox.models.send_mailbox_message_body_attachments_inner_any_of import SendMailboxMessageBodyAttachmentsInnerAnyOf as SendMailboxMessageBodyAttachmentsInnerAnyOf
|
|
294
|
+
from sendmux_mailbox.models.send_mailbox_message_body_attachments_inner_any_of1 import SendMailboxMessageBodyAttachmentsInnerAnyOf1 as SendMailboxMessageBodyAttachmentsInnerAnyOf1
|
|
295
|
+
from sendmux_mailbox.models.send_mailbox_message_result import SendMailboxMessageResult as SendMailboxMessageResult
|
|
296
|
+
from sendmux_mailbox.models.success_envelope import SuccessEnvelope as SuccessEnvelope
|
|
297
|
+
from sendmux_mailbox.models.update_mailbox_identity_body import UpdateMailboxIdentityBody as UpdateMailboxIdentityBody
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
from sendmux_mailbox.client import (
|
|
301
|
+
DEFAULT_BASE_URL,
|
|
302
|
+
SendmuxMailboxApiClient,
|
|
303
|
+
configure_mailbox,
|
|
304
|
+
create_mailbox_client,
|
|
305
|
+
)
|