Source code for models.type_file_search_result_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class TypeFileSearchResultEnum(object): """Implementation of the 'Type_FileSearchResult' enum. Specifies the type of the file document such as KDirectory, kFile, etc. Attributes: KDIRECTORY: TODO: type description here. KFILE: TODO: type description here. KEMAIL: TODO: type description here. KSYMLINK: TODO: type description here. """ KDIRECTORY = 'kDirectory' KFILE = 'kFile' KEMAIL = 'kEmail' KSYMLINK = 'kSymlink'