Source code for twilio.rest.voice

# coding=utf-8
r"""
This code was generated by
\ / _    _  _|   _  _
 | (_)\/(_)(_|\/| |(/_  v1.0.0
      /       /
"""

from twilio.base.domain import Domain
from twilio.rest.voice.v1 import V1


[docs]class Voice(Domain): def __init__(self, twilio): """ Initialize the Voice Domain :returns: Domain for Voice :rtype: twilio.rest.voice.Voice """ super(Voice, self).__init__(twilio) self.base_url = 'https://voice.twilio.com' # Versions self._v1 = None @property def v1(self): """ :returns: Version v1 of voice :rtype: twilio.rest.voice.v1.V1 """ if self._v1 is None: self._v1 = V1(self) return self._v1 @property def archived_calls(self): """ :rtype: twilio.rest.voice.v1.archived_call.ArchivedCallList """ return self.v1.archived_calls @property def byoc_trunks(self): """ :rtype: twilio.rest.voice.v1.byoc_trunk.ByocTrunkList """ return self.v1.byoc_trunks @property def connection_policies(self): """ :rtype: twilio.rest.voice.v1.connection_policy.ConnectionPolicyList """ return self.v1.connection_policies @property def dialing_permissions(self): """ :rtype: twilio.rest.voice.v1.dialing_permissions.DialingPermissionsList """ return self.v1.dialing_permissions @property def ip_records(self): """ :rtype: twilio.rest.voice.v1.ip_record.IpRecordList """ return self.v1.ip_records @property def source_ip_mappings(self): """ :rtype: twilio.rest.voice.v1.source_ip_mapping.SourceIpMappingList """ return self.v1.source_ip_mappings def __repr__(self): """ Provide a friendly representation :returns: Machine friendly representation :rtype: str """ return '<Twilio.Voice>'