from typing import TypeVar

#: The type of request within an integration.
RequestType = TypeVar("RequestType")
#: The type of response within an integration.
ResponseType = TypeVar("ResponseType")
