# -*- coding: utf-8 -*-
[docs]class Type56Enum(object):
"""Implementation of the 'Type56' enum.
TODO: type enum description here.
Attributes:
CALENDAR: TODO: type description here.
CONTACT: TODO: type description here.
POST: TODO: type description here.
FOLDER: TODO: type description here.
TASK: TODO: type description here.
JOURNAL: TODO: type description here.
NOTE: TODO: type description here.
"""
CALENDAR = 'Calendar'
CONTACT = 'Contact'
POST = 'Post'
FOLDER = 'Folder'
TASK = 'Task'
JOURNAL = 'Journal'
NOTE = 'Note'