Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.08 KB

AddPrivilegeToRole201Response.md

File metadata and controls

28 lines (20 loc) · 1.08 KB

AddPrivilegeToRole201Response

Properties

Name Type Description Notes
success bool [optional]

Example

from onelogin.models.add_privilege_to_role201_response import AddPrivilegeToRole201Response

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

# convert the object into a dict
add_privilege_to_role201_response_dict = add_privilege_to_role201_response_instance.to_dict()
# create an instance of AddPrivilegeToRole201Response from a dict
add_privilege_to_role201_response_form_dict = add_privilege_to_role201_response.from_dict(add_privilege_to_role201_response_dict)

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