Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 947 Bytes

File metadata and controls

31 lines (22 loc) · 947 Bytes

SAMLMetadata

SAML Provider Metadata serializer

Properties

Name Type Description Notes
metadata str [readonly]
download_url str [readonly]

Example

from authentik_client.models.saml_metadata import SAMLMetadata

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

# convert the object into a dict
saml_metadata_dict = saml_metadata_instance.to_dict()
# create an instance of SAMLMetadata from a dict
saml_metadata_from_dict = SAMLMetadata.from_dict(saml_metadata_dict)

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