Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.61 KB

File metadata and controls

34 lines (25 loc) · 1.61 KB

RunTemplateParameterGroupCreateRequest

A Parameter Group Create Request 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 [optional] [default to []]

Example

from cosmotech_api.models.run_template_parameter_group_create_request import RunTemplateParameterGroupCreateRequest

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

# convert the object into a dict
run_template_parameter_group_create_request_dict = run_template_parameter_group_create_request_instance.to_dict()
# create an instance of RunTemplateParameterGroupCreateRequest from a dict
run_template_parameter_group_create_request_from_dict = RunTemplateParameterGroupCreateRequest.from_dict(run_template_parameter_group_create_request_dict)

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