Source code for models_v2.role_enum
# -*- coding: utf-8 -*-
[docs]class RoleEnum(object):
"""Implementation of the 'Role' enum.
Specifies the interface role.
Attributes:
PRIMARY: TODO: type description here.
SECONDARY: TODO: type description here.
UNDEFINED: TODO: type description here.
"""
PRIMARY = 'Primary'
SECONDARY = 'Secondary'
UNDEFINED = 'Undefined'