Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.72 KB

File metadata and controls

36 lines (27 loc) · 1.72 KB

RunTemplateParameterUpdateRequest

A Run Template Parameter for update parameter

Properties

Name Type Description Notes
description str The parameter description [optional]
labels Dict[str, str] A translated label with key as ISO 639-1 code [optional]
var_type str The variable type for the parameter. Basic types or special type %DATASETID% [optional]
default_value str The default value for this parameter [optional]
min_value str The minimum value for this parameter [optional]
max_value str The maximum value for this parameter [optional]
additional_data Dict[str, object] Free form additional data [optional]

Example

from cosmotech_api.models.run_template_parameter_update_request import RunTemplateParameterUpdateRequest

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

# convert the object into a dict
run_template_parameter_update_request_dict = run_template_parameter_update_request_instance.to_dict()
# create an instance of RunTemplateParameterUpdateRequest from a dict
run_template_parameter_update_request_from_dict = RunTemplateParameterUpdateRequest.from_dict(run_template_parameter_update_request_dict)

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