Source code for models_v2.mode_3_enum
# -*- coding: utf-8 -*-
[docs]class Mode3Enum(object):
"""Implementation of the 'Mode3' enum.
Mode of protocol access.
'ReadOnly'
'ReadWrite'
Attributes:
READONLY: TODO: type description here.
READWRITE: TODO: type description here.
"""
READONLY = 'ReadOnly'
READWRITE = 'ReadWrite'