Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

File metadata and controls

36 lines (27 loc) · 1.26 KB

UserSAMLSourceConnection

User source connection

Properties

Name Type Description Notes
pk int [readonly]
user int
source UUID
source_obj Source [readonly]
identifier str
created datetime [readonly]
last_updated datetime [readonly]

Example

from authentik_client.models.user_saml_source_connection import UserSAMLSourceConnection

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

# convert the object into a dict
user_saml_source_connection_dict = user_saml_source_connection_instance.to_dict()
# create an instance of UserSAMLSourceConnection from a dict
user_saml_source_connection_from_dict = UserSAMLSourceConnection.from_dict(user_saml_source_connection_dict)

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