Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 998 Bytes

File metadata and controls

32 lines (24 loc) · 998 Bytes

SsoSaml

Properties

Name Type Description Notes
metadata_url str [optional]
acs_url str [optional]
sls_url str [optional]
issuer str [optional]
certificate SsoSamlCertificate [optional]

Example

from onelogin.models.sso_saml import SsoSaml

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

# convert the object into a dict
sso_saml_dict = sso_saml_instance.to_dict()
# create an instance of SsoSaml from a dict
sso_saml_form_dict = sso_saml.from_dict(sso_saml_dict)

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