The Solution Role
| Name | Type | Description | Notes |
|---|---|---|---|
| role | str | The Solution Role |
from cosmotech_api.models.solution_role import SolutionRole
# TODO update the JSON string below
json = "{}"
# create an instance of SolutionRole from a JSON string
solution_role_instance = SolutionRole.from_json(json)
# print the JSON string representation of the object
print(SolutionRole.to_json())
# convert the object into a dict
solution_role_dict = solution_role_instance.to_dict()
# create an instance of SolutionRole from a dict
solution_role_from_dict = SolutionRole.from_dict(solution_role_dict)