Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.18 KB

ConfigurationSaml.md

File metadata and controls

29 lines (21 loc) · 1.18 KB

ConfigurationSaml

Properties

Name Type Description Notes
signature_algorithm str One of the following: - SHA-1 - SHA-256 - SHA-348 - SHA-512 [optional]
certificate_id int When creating apps the default certificate will be used unless the `certificate_id` attribute is applied in the `configuration` object. [optional]

Example

from onelogin.models.configuration_saml import ConfigurationSaml

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

# convert the object into a dict
configuration_saml_dict = configuration_saml_instance.to_dict()
# create an instance of ConfigurationSaml from a dict
configuration_saml_form_dict = configuration_saml.from_dict(configuration_saml_dict)

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