Exemplo n.º 1
0
    def notifications(self):
        """
        Access the notifications

        :returns: twilio.rest.notify.v1.service.notification.NotificationList
        :rtype: twilio.rest.notify.v1.service.notification.NotificationList
        """
        if self._notifications is None:
            self._notifications = NotificationList(self._version, service_sid=self._solution['sid'], )
        return self._notifications
 def notifications(self):
     """
     Access the notifications
     
     :returns: NotificationList
     :rtype: NotificationList
     """
     if self._notifications is None:
         self._notifications = NotificationList(
             self._version,
             service_sid=self._solution['sid'],
         )
     return self._notifications