Source code for models_v2.condition_enum
# -*- coding: utf-8 -*-
[docs]class ConditionEnum(object):
"""Implementation of the 'Condition' enum.
Specifies condition for the file selection.
Attributes:
GREATERTHAN: TODO: type description here.
SMALLERTHAN: TODO: type description here.
"""
GREATERTHAN = 'GreaterThan'
SMALLERTHAN = 'SmallerThan'