Source code for models_v2.condition_2_enum
# -*- coding: utf-8 -*-
[docs]class Condition2Enum(object):
"""Implementation of the 'Condition2' enum.
Specifies the condition for the file age.
Attributes:
LASTACCESSED: TODO: type description here.
LASTMODIFIED: TODO: type description here.
"""
LASTACCESSED = 'LastAccessed'
LASTMODIFIED = 'LastModified'