Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

File metadata and controls

29 lines (20 loc) · 944 Bytes

AssignRoleRequest

Properties

Name Type Description Notes
type RoleType [optional]

Example

from okta.models.assign_role_request import AssignRoleRequest

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

# convert the object into a dict
assign_role_request_dict = assign_role_request_instance.to_dict()
# create an instance of AssignRoleRequest from a dict
assign_role_request_from_dict = AssignRoleRequest.from_dict(assign_role_request_dict)

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