# type: ignore from __future__ import annotations import openvino._pyopenvino import typing """ openvino.properties.log submodule that simulates ov::log """ __all__ = ['Level', 'level'] class Level: """ Members: NO ERR WARNING INFO DEBUG TRACE """ DEBUG: typing.ClassVar[Level] # value = ERR: typing.ClassVar[Level] # value = INFO: typing.ClassVar[Level] # value = NO: typing.ClassVar[Level] # value = TRACE: typing.ClassVar[Level] # value = WARNING: typing.ClassVar[Level] # value = __members__: typing.ClassVar[dict[str, Level]] # value = {'NO': , 'ERR': , 'WARNING': , 'INFO': , 'DEBUG': , 'TRACE': } def __eq__(self, other: typing.Any) -> bool: ... def __ge__(self, other: typing.Any) -> bool: ... def __getstate__(self) -> int: ... def __gt__(self, other: typing.Any) -> bool: ... def __hash__(self) -> int: ... def __index__(self) -> int: ... def __init__(self, value: typing.SupportsInt) -> None: ... def __int__(self) -> int: ... def __le__(self, other: typing.Any) -> bool: ... def __lt__(self, other: typing.Any) -> bool: ... def __ne__(self, other: typing.Any) -> bool: ... def __repr__(self) -> str: ... def __setstate__(self, state: typing.SupportsInt) -> None: ... def __str__(self) -> str: ... @property def name(self) -> str: ... @property def value(self) -> int: ... @typing.overload def level() -> str: ... @typing.overload def level(arg0: Level) -> tuple[str, openvino._pyopenvino.OVAny]: ...