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