예제 #1
0
    def notifications(self):
        """
        Access the notifications

        :returns: twilio.rest.api.v2010.account.call.notification.NotificationList
        :rtype: twilio.rest.api.v2010.account.call.notification.NotificationList
        """
        if self._notifications is None:
            self._notifications = NotificationList(
                self._version,
                account_sid=self._solution['account_sid'],
                call_sid=self._solution['sid'],
            )
        return self._notifications
예제 #2
0
 def notifications(self):
     """
     Access the notifications
     
     :returns: NotificationList
     :rtype: NotificationList
     """
     if self._notifications is None:
         self._notifications = NotificationList(
             self._version,
             account_sid=self._solution['account_sid'],
             call_sid=self._solution['sid'],
         )
     return self._notifications