Source code for models_v2.protocol_access_level_1_enum
# -*- coding: utf-8 -*-
[docs]class ProtocolAccessLevel1Enum(object):
"""Implementation of the 'ProtocolAccessLevel1' enum.
Specifies the level of access for any protocol.
Attributes:
KDISABLED: TODO: type description here.
KREADONLY: TODO: type description here.
KREADWRITE: TODO: type description here.
"""
KDISABLED = 'kDisabled'
KREADONLY = 'kReadOnly'
KREADWRITE = 'kReadWrite'