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