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

        :returns: twilio.rest.notify.v1.service.binding.BindingList
        :rtype: twilio.rest.notify.v1.service.binding.BindingList
        """
        if self._bindings is None:
            self._bindings = BindingList(self._version, service_sid=self._solution['sid'], )
        return self._bindings
 def bindings(self):
     """
     Access the bindings
     
     :returns: BindingList
     :rtype: BindingList
     """
     if self._bindings is None:
         self._bindings = BindingList(
             self._version,
             service_sid=self._solution['sid'],
         )
     return self._bindings