Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

ScimAuthenticationScheme.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

ScimAuthenticationScheme

Properties

Name Type Description Notes
description str A description of the authentication scheme.
name str The common authentication scheme name
type str The authentication scheme.

Example

from eZmaxApi.models.scim_authentication_scheme import ScimAuthenticationScheme

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

# convert the object into a dict
scim_authentication_scheme_dict = scim_authentication_scheme_instance.to_dict()
# create an instance of ScimAuthenticationScheme from a dict
scim_authentication_scheme_form_dict = scim_authentication_scheme.from_dict(scim_authentication_scheme_dict)

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