def distribution(self, id): """ Method for `View Distribution Details <https://m2x.att.com/developer/documentation/v2/distribution#View-Distribution-Details>`_ endpoint. :param id: ID of the Distribution to retrieve :type id: str :return: The matching Distribution :rtype: Distribution :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request """ return Distribution.get(self, id)
def distribution(self, id): return Distribution.get(self, id)