Source code for models_v2.type_71_enum
# -*- coding: utf-8 -*-
[docs]class Type71Enum(object):
"""Implementation of the 'Type71' enum.
Specifies Security Mode for view.
Attributes:
NATIVEMODE: TODO: type description here.
UNIFIEDMODE: TODO: type description here.
NTFSMODE: TODO: type description here.
"""
NATIVEMODE = 'NativeMode'
UNIFIEDMODE = 'UnifiedMode'
NTFSMODE = 'NtfsMode'