Source code for models_v2.office_365_workload_enum

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

[docs]class Office365WorkloadEnum(object): """Implementation of the 'office365Workload' enum. TODO: type enum description here. Attributes: KMAILBOX: TODO: type description here. KONEDRIVE: TODO: type description here. KSHAREPOINT: TODO: type description here. KPUBLICFOLDERS: TODO: type description here. KGROUPS: TODO: type description here. KTEAMS: TODO: type description here. """ KMAILBOX = 'kMailbox' KONEDRIVE = 'kOneDrive' KSHAREPOINT = 'kSharePoint' KPUBLICFOLDERS = 'kPublicFolders' KGROUPS = 'kGroups' KTEAMS = 'kTeams'