Source code for models_v2.num_week_in_month_enum
# -*- coding: utf-8 -*-
[docs]class NumWeekInMonthEnum(object):
"""Implementation of the 'NumWeekInMonth' enum.
Specifies Num Week In Month type.
Attributes:
FIRST: TODO: type description here.
SECOND: TODO: type description here.
THIRD: TODO: type description here.
FOURTH: TODO: type description here.
LAST: TODO: type description here.
"""
FIRST = 'First'
SECOND = 'Second'
THIRD = 'Third'
FOURTH = 'Fourth'
LAST = 'Last'