Source code for models_v2.mode_2_enum

# -*- coding: utf-8 -*-

[docs]class Mode2Enum(object): """Implementation of the 'Mode2' enum. Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes. Attributes: COMPLIANCE: TODO: type description here. ADMINISTRATIVE: TODO: type description here. """ COMPLIANCE = 'Compliance' ADMINISTRATIVE = 'Administrative'