Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 946 Bytes

Privilege.md

File metadata and controls

31 lines (23 loc) · 946 Bytes

Privilege

Properties

Name Type Description Notes
id str [optional]
name str
description str [optional]
privilege PrivilegePrivilege

Example

from onelogin.models.privilege import Privilege

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

# convert the object into a dict
privilege_dict = privilege_instance.to_dict()
# create an instance of Privilege from a dict
privilege_form_dict = privilege.from_dict(privilege_dict)

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