Source code for models_v2.status_enum

# -*- coding: utf-8 -*-

[docs]class StatusEnum(object): """Implementation of the 'Status' enum. Specifies the connection status. Attributes: REACHABLE: TODO: type description here. UNREACHABLE: TODO: type description here. INCOMPATIBLE: TODO: type description here. """ REACHABLE = 'Reachable' UNREACHABLE = 'Unreachable' INCOMPATIBLE = 'Incompatible'