| 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] |
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)