Source code for models_v2.object_class_1_enum

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

[docs]class ObjectClass1Enum(object): """Implementation of the 'objectClass1' enum. TODO: type enum description here. Attributes: USER: TODO: type description here. GROUP: TODO: type description here. COMPUTER: TODO: type description here. WELLKNOWNPRINCIPAL: TODO: type description here. """ USER = 'User' GROUP = 'Group' COMPUTER = 'Computer' WELLKNOWNPRINCIPAL = 'WellKnownPrincipal'