Source code for models_v2.type_14_enum
# -*- coding: utf-8 -*-
[docs]class Type14Enum(object):
"""Implementation of the 'Type14' 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'