the Runner Role
| Name | Type | Description | Notes |
|---|---|---|---|
| role | str | the Runner Role |
from cosmotech_api.models.runner_role import RunnerRole
# TODO update the JSON string below
json = "{}"
# create an instance of RunnerRole from a JSON string
runner_role_instance = RunnerRole.from_json(json)
# print the JSON string representation of the object
print(RunnerRole.to_json())
# convert the object into a dict
runner_role_dict = runner_role_instance.to_dict()
# create an instance of RunnerRole from a dict
runner_role_from_dict = RunnerRole.from_dict(runner_role_dict)