Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.03 KB

AddPrivilegeToRoleRequest.md

File metadata and controls

28 lines (20 loc) · 1.03 KB

AddPrivilegeToRoleRequest

Properties

Name Type Description Notes
roles List[int] [optional]

Example

from onelogin.models.add_privilege_to_role_request import AddPrivilegeToRoleRequest

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

# convert the object into a dict
add_privilege_to_role_request_dict = add_privilege_to_role_request_instance.to_dict()
# create an instance of AddPrivilegeToRoleRequest from a dict
add_privilege_to_role_request_form_dict = add_privilege_to_role_request.from_dict(add_privilege_to_role_request_dict)

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