Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.49 KB

File metadata and controls

32 lines (23 loc) · 1.49 KB

OAuthSourcePropertyMappingRequest

OAuthSourcePropertyMapping 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

Example

from authentik_client.models.o_auth_source_property_mapping_request import OAuthSourcePropertyMappingRequest

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

# convert the object into a dict
o_auth_source_property_mapping_request_dict = o_auth_source_property_mapping_request_instance.to_dict()
# create an instance of OAuthSourcePropertyMappingRequest from a dict
o_auth_source_property_mapping_request_from_dict = OAuthSourcePropertyMappingRequest.from_dict(o_auth_source_property_mapping_request_dict)

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