Source code for models_v2.enum_2_enum
# -*- coding: utf-8 -*-
[docs]class Enum2Enum(object):
"""Implementation of the 'Enum2' enum.
Specifies the file type
Attributes:
FILE: TODO: type description here.
DIRECTORY: TODO: type description here.
SYMLINK: TODO: type description here.
"""
FILE = 'File'
DIRECTORY = 'Directory'
SYMLINK = 'Symlink'