Source code for models_v2.documents_filter_type_enum

# -*- coding: utf-8 -*-

[docs]class DocumentsFilterTypeEnum(object): """Implementation of the 'DocumentsFilterType' enum. Enumeration of all the document filter option. Attributes: NONE: TODO: type description here. ID: TODO: type description here. CONTENT: TODO: type description here. """ NONE = 'NONE' ID = 'ID' CONTENT = 'CONTENT'