"""
Endpoint Request is the wrapper around the data delivery mechanism of the Data Platform, designed as
the lowest abstraction layer that allows to retrieve raw data from Data Platform API.
"""

__all__ = ("Definition", "RequestMethod", "Response", "Request")

from ._data._endpoint_data import RequestMethod
from ._data._response import Response
from ._data._request import Request
from ._data._endpoint_definition import Definition
