Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 856 Bytes

File metadata and controls

30 lines (21 loc) · 856 Bytes

RunnerRole

the Runner Role

Properties

Name Type Description Notes
role str the Runner Role

Example

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)

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