| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| scopes |
List[str] |
|
[optional] |
from stratum.models.update_role_input import UpdateRoleInput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRoleInput from a JSON string
update_role_input_instance = UpdateRoleInput.from_json(json)
# print the JSON string representation of the object
print(UpdateRoleInput.to_json())
# convert the object into a dict
update_role_input_dict = update_role_input_instance.to_dict()
# create an instance of UpdateRoleInput from a dict
update_role_input_from_dict = UpdateRoleInput.from_dict(update_role_input_dict)
[Back to Model list] [Back to API list] [Back to README]