Source code for highton.call_mixins.detail_call_mixin

from highton.call_mixins import Call
from highton import fields


class DetailCallMixin(Call):
    """
    A mixin to retrieve a single object of a highrise endpoint

    """

    @classmethod
    def get(cls, object_id):
        """
        Retrieves a single model

        :param object_id: the primary id of the model
        :type object_id: integer
        :return: the object of the parsed xml object
        :rtype: object
        """
        return fields.ObjectField(name=cls.ENDPOINT, init_class=cls).decode(
            cls.element_from_string(
                cls._get_request(endpoint=cls.ENDPOINT + '/' + str(object_id)).text
            )
        )