Source code for models_v2.type_13_enum

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

[docs]class Type13Enum(object): """Implementation of the 'Type13' enum. Specifies the Data Migration Task down-tiering file selection type. Attributes: OLDERTHAN: TODO: type description here. LASTACCESSED: TODO: type description here. LASTMODIFIED: TODO: type description here. """ OLDERTHAN = 'OlderThan' LASTACCESSED = 'LastAccessed' LASTMODIFIED = 'LastModified'