Source code for models_v2.permission_enum
# -*- coding: utf-8 -*-
[docs]class PermissionEnum(object):
"""Implementation of the 'Permission' enum.
TODO: type enum description here.
Attributes:
READ: TODO: type description here.
WRITE: TODO: type description here.
READACP: TODO: type description here.
WRITEACP: TODO: type description here.
FULLCONTROL: TODO: type description here.
"""
READ = 'Read'
WRITE = 'Write'
READACP = 'ReadACP'
WRITEACP = 'WriteACP'
FULLCONTROL = 'FullControl'