Source code for models_v2.run_type_5_enum

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

[docs]class RunType5Enum(object): """Implementation of the 'runType5' enum. TODO: type enum description here. Attributes: KALL: TODO: type description here. KLOG: TODO: type description here. KSYSTEM: TODO: type description here. KINCREMENTAL: TODO: type description here. KFULL: TODO: type description here. """ KALL = 'kAll' KLOG = 'kLog' KSYSTEM = 'kSystem' KINCREMENTAL = 'kIncremental' KFULL = 'kFull'