Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.39 KB

File metadata and controls

34 lines (25 loc) · 1.39 KB

RunTemplateParameterGroup

A Parameter Group for a Run Template

Properties

Name Type Description Notes
id str The Parameter Group id
description str A description of the parameter group [optional]
labels Dict[str, str] A translated label with key as ISO 639-1 code [optional]
additional_data Dict[str, object] Free form additional data [optional]
parameters List[str] An ordered list of Run Template Parameters

Example

from cosmotech_api.models.run_template_parameter_group import RunTemplateParameterGroup

# TODO update the JSON string below
json = "{}"
# create an instance of RunTemplateParameterGroup from a JSON string
run_template_parameter_group_instance = RunTemplateParameterGroup.from_json(json)
# print the JSON string representation of the object
print(RunTemplateParameterGroup.to_json())

# convert the object into a dict
run_template_parameter_group_dict = run_template_parameter_group_instance.to_dict()
# create an instance of RunTemplateParameterGroup from a dict
run_template_parameter_group_from_dict = RunTemplateParameterGroup.from_dict(run_template_parameter_group_dict)

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