Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.27 KB

File metadata and controls

36 lines (27 loc) · 1.27 KB

GroupSAMLSourceConnection

Group Source Connection

Properties

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

Example

from authentik_client.models.group_saml_source_connection import GroupSAMLSourceConnection

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

# convert the object into a dict
group_saml_source_connection_dict = group_saml_source_connection_instance.to_dict()
# create an instance of GroupSAMLSourceConnection from a dict
group_saml_source_connection_from_dict = GroupSAMLSourceConnection.from_dict(group_saml_source_connection_dict)

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