
from typing import Union
from typing import Literal

BlockingReportValues = Union[Literal['spam'], Literal['abuse']]
