Source code for models_v2.ad_mapping_enum
# -*- coding: utf-8 -*-
[docs]class AdMappingEnum(object):
"""Implementation of the 'AdMapping' enum.
Specifies the field to be used in AD user for authentication.
Attributes:
SAMACCOUNTNAME: TODO: type description here.
USERPRINCIPALNAME: TODO: type description here.
"""
SAMACCOUNTNAME = 'SamAccountName'
USERPRINCIPALNAME = 'UserPrincipalName'