# -*- coding: utf-8 -*-
[docs]class Type41Enum(object):
"""Implementation of the 'Type41' enum.
Specifies the indexed object type.
Attributes:
EMAILS: TODO: type description here.
FILES: TODO: type description here.
CASSANDRAOBJECTS: TODO: type description here.
COUCHBASEOBJECTS: TODO: type description here.
HBASEOBJECTS: TODO: type description here.
HIVEOBJECTS: TODO: type description here.
MONGOOBJECTS: TODO: type description here.
HDFSOBJECTS: TODO: type description here.
EXCHANGEOBJECTS: TODO: type description here.
PUBLICFOLDERS: TODO: type description here.
"""
EMAILS = 'Emails'
FILES = 'Files'
CASSANDRAOBJECTS = 'CassandraObjects'
COUCHBASEOBJECTS = 'CouchbaseObjects'
HBASEOBJECTS = 'HbaseObjects'
HIVEOBJECTS = 'HiveObjects'
MONGOOBJECTS = 'MongoObjects'
HDFSOBJECTS = 'HDFSObjects'
EXCHANGEOBJECTS = 'ExchangeObjects'
PUBLICFOLDERS = 'PublicFolders'