Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

RunTemplateParameterValue

the value of Analysis parameter for a Runner for this Run

Properties

Name Type Description Notes
parameter_id str the parameter Id
var_type str the parameter value type [optional] [readonly]
value str the parameter value

Example

from cosmotech_api.models.run_template_parameter_value import RunTemplateParameterValue

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

# convert the object into a dict
run_template_parameter_value_dict = run_template_parameter_value_instance.to_dict()
# create an instance of RunTemplateParameterValue from a dict
run_template_parameter_value_from_dict = RunTemplateParameterValue.from_dict(run_template_parameter_value_dict)

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