Source code for mythx_models.response.analysis_status

"""This module contains the AnalysisStatusResponse domain model."""

from .analysis import AnalysisShort


[docs]class AnalysisStatusResponse(AnalysisShort): """The API response domain model for the status of a single analysis.""" pass