Source code for models_v2.mode_4_enum

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

[docs]class Mode4Enum(object): """Implementation of the 'Mode4' enum. Mode of protocol access. 'ReadOnly' 'ReadWrite' Attributes: READONLY: TODO: type description here. READWRITE: TODO: type description here. """ READONLY = 'ReadOnly' READWRITE = 'ReadWrite'