Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

File metadata and controls

34 lines (25 loc) · 1.46 KB

SAMLPropertyMappingRequest

SAMLPropertyMapping Serializer

Properties

Name Type Description Notes
managed str Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. [optional]
name str
expression str
saml_name str
friendly_name str [optional]

Example

from authentik_client.models.saml_property_mapping_request import SAMLPropertyMappingRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SAMLPropertyMappingRequest from a JSON string
saml_property_mapping_request_instance = SAMLPropertyMappingRequest.from_json(json)
# print the JSON string representation of the object
print(SAMLPropertyMappingRequest.to_json())

# convert the object into a dict
saml_property_mapping_request_dict = saml_property_mapping_request_instance.to_dict()
# create an instance of SAMLPropertyMappingRequest from a dict
saml_property_mapping_request_from_dict = SAMLPropertyMappingRequest.from_dict(saml_property_mapping_request_dict)

[Back to Model list] [Back to API list] [Back to README]