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