Repository URL to install this package:
|
Version:
1.0.1 ▾
|
# -*- coding: utf-8 -*-
class EstimateInclusionEnum(object):
"""Implementation of the 'Estimate Inclusion' enum.
Estimate Inclusion
Attributes:
HIGH: TODO: type description here.
MODERATE: TODO: type description here.
LOW: TODO: type description here.
NO: TODO: type description here.
"""
HIGH = 'HIGH'
MODERATE = 'MODERATE'
LOW = 'LOW'
NO = 'NO'