Source code for models_v2.result_enum
# -*- coding: utf-8 -*-
[docs]class ResultEnum(object):
"""Implementation of the 'Result' enum.
Specifies the result of host checking performed by agent.
Attributes:
PASS: TODO: type description here.
FAIL: TODO: type description here.
WARNING: TODO: type description here.
"""
PASS = 'Pass'
FAIL = 'Fail'
WARNING = 'Warning'