Source code for models_v2.mode_1_enum

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

[docs]class Mode1Enum(object): """Implementation of the 'Mode1' enum. The mode applied to the list of file extensions 'Whitelist' indicates a whitelist extension filter. 'Blacklist' indicates a blacklist extension filter. Attributes: WHITELIST: TODO: type description here. BLACKLIST: TODO: type description here. """ WHITELIST = 'Whitelist' BLACKLIST = 'Blacklist'