Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

SamlAppAllOf.md

File metadata and controls

30 lines (22 loc) · 1.04 KB

SamlAppAllOf

Properties

Name Type Description Notes
configuration ConfigurationSaml [optional]
sso SsoSaml [optional]
parameters SamlAppAllOfParameters [optional]

Example

from onelogin.models.saml_app_all_of import SamlAppAllOf

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

# convert the object into a dict
saml_app_all_of_dict = saml_app_all_of_instance.to_dict()
# create an instance of SamlAppAllOf from a dict
saml_app_all_of_form_dict = saml_app_all_of.from_dict(saml_app_all_of_dict)

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