Source code for models_v2.type_38_enum
# -*- coding: utf-8 -*-
[docs]class Type38Enum(object):
"""Implementation of the 'Type38' enum.
Specifies protocol access mode for view.
Attributes:
READONLY: TODO: type description here.
READWRITE: TODO: type description here.
"""
READONLY = 'ReadOnly'
READWRITE = 'ReadWrite'