| Name |
Type |
Description |
Notes |
| description |
str |
Description of the role |
|
| label |
str |
Unique label for the role |
|
from okta.models.update_iam_role_request import UpdateIamRoleRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateIamRoleRequest from a JSON string
update_iam_role_request_instance = UpdateIamRoleRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateIamRoleRequest.to_json())
# convert the object into a dict
update_iam_role_request_dict = update_iam_role_request_instance.to_dict()
# create an instance of UpdateIamRoleRequest from a dict
update_iam_role_request_from_dict = UpdateIamRoleRequest.from_dict(update_iam_role_request_dict)
[Back to Model list] [Back to API list] [Back to README]