1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
from warnings import warn
from twilio.rest.conversations.ConversationsBase import ConversationsBase
from twilio.rest.conversations.v1.address_configuration import AddressConfigurationList
from twilio.rest.conversations.v1.configuration import ConfigurationList
from twilio.rest.conversations.v1.conversation import ConversationList
from twilio.rest.conversations.v1.credential import CredentialList
from twilio.rest.conversations.v1.participant_conversation import (
ParticipantConversationList,
)
from twilio.rest.conversations.v1.role import RoleList
from twilio.rest.conversations.v1.service import ServiceList
from twilio.rest.conversations.v1.user import UserList
class Conversations(ConversationsBase):
@property
def configuration(self) -> ConfigurationList:
warn(
"configuration is deprecated. Use v1.configuration instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.configuration
@property
def address_configurations(self) -> AddressConfigurationList:
warn(
"address_configurations is deprecated. Use v1.address_configurations instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.address_configurations
@property
def conversations(self) -> ConversationList:
warn(
"conversations is deprecated. Use v1.conversations instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.conversations
@property
def credentials(self) -> CredentialList:
warn(
"credentials is deprecated. Use v1.credentials instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.credentials
@property
def participant_conversations(self) -> ParticipantConversationList:
warn(
"participant_conversations is deprecated. Use v1.participant_conversations instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.participant_conversations
@property
def roles(self) -> RoleList:
warn(
"roles is deprecated. Use v1.roles instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.roles
@property
def services(self) -> ServiceList:
warn(
"services is deprecated. Use v1.services instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.services
@property
def users(self) -> UserList:
warn(
"users is deprecated. Use v1.users instead.",
DeprecationWarning,
stacklevel=2,
)
return self.v1.users
|