8000 chore: add domain detail by manisha1997 · Pull Request #739 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

chore: add domain detail #739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
feat: add domain detail to twilio python
  • Loading branch information
manisha1997 committed Dec 11, 2023
commit af9462e223ceb7291fd493807d292db910e512fd
4 changes: 2 additions & 2 deletions twilio/rest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,9 +435,9 @@ def preview(self) -> "Preview":
@property
def preview_messaging(self) -> "PreviewMessaging":
"""
Access the Preview Twilio Domain
Access the Preview Messaging Twilio Domain

:returns: Preview Twilio Domain
:returns: Preview Messaging Twilio Domain
"""
if self._preview_messaging is None:
from twilio.rest.preview_messaging import PreviewMessaging
Expand Down
2 changes: 1 addition & 1 deletion twilio/rest/preview_messaging/PreviewMessagingBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, twilio: Client):
"""
Initialize the Preview Messaging Domain

:returns: Domain for Accounts
:returns: Domain for Preview Messaging
"""
super().__init__(twilio, "https://preview.messaging.twilio.com")
self._v1: Optional[V1] = None
Expand Down
0