Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 886 Bytes

File metadata and controls

30 lines (21 loc) · 886 Bytes

SolutionRole

The Solution Role

Properties

Name Type Description Notes
role str The Solution Role

Example

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)

[Back to Model list] [Back to API list] [Back to README]