Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.55 KB

RunTemplateParameter.md

File metadata and controls

37 lines (28 loc) · 1.55 KB

RunTemplateParameter

a Run Template Parameter

Properties

Name Type Description Notes
id str the Parameter id
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]
regex_validation str a regex to validate the value [optional]
options Dict[str, object] freeform options [optional]

Example

from cosmotech_api.models.run_template_parameter import RunTemplateParameter

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

# convert the object into a dict
run_template_parameter_dict = run_template_parameter_instance.to_dict()
# create an instance of RunTemplateParameter from a dict
run_template_parameter_from_dict = RunTemplateParameter.from_dict(run_template_parameter_dict)

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