| Name | Type | Description | Notes |
|---|---|---|---|
| role_id | UUID |
from stratum.models.assign_role_input import AssignRoleInput
# TODO update the JSON string below
json = "{}"
# create an instance of AssignRoleInput from a JSON string
assign_role_input_instance = AssignRoleInput.from_json(json)
# print the JSON string representation of the object
print(AssignRoleInput.to_json())
# convert the object into a dict
assign_role_input_dict = assign_role_input_instance.to_dict()
# create an instance of AssignRoleInput from a dict
assign_role_input_from_dict = AssignRoleInput.from_dict(assign_role_input_dict)