Source code for models_v2.condition_1_enum

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

[docs]class Condition1Enum(object): """Implementation of the 'Condition1' enum. Specifies the condition for the file age. Attributes: OLDERTHAN: TODO: type description here. LASTACCESSED: TODO: type description here. LASTMODIFIED: TODO: type description here. """ OLDERTHAN = 'OlderThan' LASTACCESSED = 'LastAccessed' LASTMODIFIED = 'LastModified'