Exemple #1
0
    def device(self, id):
        """ Method for `View Device Details <https://m2x.att.com/developer/documentation/v2/device#View-Device-Details>`_ endpoint.

        :param id: ID of the Device to retrieve
        :type id: str

        :return: The matching Device
        :rtype: Device

        :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request
        """
        return Device.get(self, id)
Exemple #2
0
 def device(self, id):
     return Device.get(self, id)
Exemple #3
0
 def device(self, id):
     return Device.get(self, id)