Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

SamlApplication

Properties

Name Type Description Notes
credentials ApplicationCredentials [optional]
name str A unique key is generated for the custom app instance when you use SAML_2_0 `signOnMode`. [optional] [readonly]
settings SamlApplicationSettings [optional]

Example

from okta.models.saml_application import SamlApplication

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

# convert the object into a dict
saml_application_dict = saml_application_instance.to_dict()
# create an instance of SamlApplication from a dict
saml_application_from_dict = SamlApplication.from_dict(saml_application_dict)

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