Source code for models_v2.data_lock_enum
# -*- coding: utf-8 -*-
[docs]class DataLockEnum(object):
"""Implementation of the 'DataLock' enum.
This field is deprecated. Use DataLockConstraints field instead.
Attributes:
COMPLIANCE: TODO: type description here.
ADMINISTRATIVE: TODO: type description here.
"""
COMPLIANCE = 'Compliance'
ADMINISTRATIVE = 'Administrative'