Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.05 KB

File metadata and controls

28 lines (20 loc) · 1.05 KB

SamlAppAllOfParameters

Properties

Name Type Description Notes
saml_username SamlAppAllOfParametersSamlUsername

Example

from onelogin.models.saml_app_all_of_parameters import SamlAppAllOfParameters

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

# convert the object into a dict
saml_app_all_of_parameters_dict = saml_app_all_of_parameters_instance.to_dict()
# create an instance of SamlAppAllOfParameters from a dict
saml_app_all_of_parameters_form_dict = saml_app_all_of_parameters.from_dict(saml_app_all_of_parameters_dict)

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