def toll_free(self):
        """
        Access the toll_free

        :returns: twilio.rest.api.v2010.account.incoming_phone_number.toll_free.TollFreeList
        :rtype: twilio.rest.api.v2010.account.incoming_phone_number.toll_free.TollFreeList
        """
        if self._toll_free is None:
            self._toll_free = TollFreeList(self._version, account_sid=self._solution['account_sid'], )
        return self._toll_free
Beispiel #2
0
 def toll_free(self):
     """
     Access the toll_free
     
     :returns: TollFreeList
     :rtype: TollFreeList
     """
     if self._toll_free is None:
         self._toll_free = TollFreeList(
             self._version,
             owner_account_sid=self._solution['owner_account_sid'],
         )
     return self._toll_free