Source code for models_v2.type_53_enum

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

[docs]class Type53Enum(object): """Implementation of the 'Type53' enum. Specifies the Public Folder item types for search. 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'