# -*- coding: utf-8 -*-
[docs]class ADUserAuthMapping(object):
"""Implementation of the 'AD User Auth Mapping' model.
Describes AD user mapping options for certificate based authentication.
Attributes:
enum (Enum): Specifies the auth field options
"""
# Create a mapping from Model property names to API property names
_names = {
"enum":'enum'
}
def __init__(self,
enum=None):
"""Constructor for the ADUserAuthMapping class"""
# Initialize members of the class
self.enum = enum
[docs] @classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
enum = dictionary.get('enum')
# Return an object of this model
return cls(enum)