# -*- coding: utf-8 -*-
[docs]class TypeEnum(object):
    """Implementation of the 'Type' enum.
    Specifies the type of the mapping.
    Attributes:
        RFC2307: TODO: type description here.
        SFU30: TODO: type description here.
        CENTRIFY: TODO: type description here.
        CUSTOMATTRIBUTES: TODO: type description here.
        LDAPPROVIDER: TODO: type description here.
        NISPROVIDER: TODO: type description here.
        RID: TODO: type description here.
        FIXED: TODO: type description here.
    """
    RFC2307 = 'Rfc2307'
    SFU30 = 'Sfu30'
    CENTRIFY = 'Centrify'
    CUSTOMATTRIBUTES = 'CustomAttributes'
    LDAPPROVIDER = 'LdapProvider'
    NISPROVIDER = 'NisProvider'
    RID = 'Rid'
    FIXED = 'Fixed'