Name | Type | Description | Notes |
---|---|---|---|
url | str | [readonly] | |
id | int | [readonly] | |
param_name | str | [readonly] | |
value | float | ||
type | PluginParameterType | [readonly] | |
plugin_inst | str | [readonly] | |
plugin_param | str | [readonly] |
from aiochris_oag.models.float_parameter import FloatParameter
# TODO update the JSON string below
json = "{}"
# create an instance of FloatParameter from a JSON string
float_parameter_instance = FloatParameter.from_json(json)
# print the JSON string representation of the object
print(FloatParameter.to_json())
# convert the object into a dict
float_parameter_dict = float_parameter_instance.to_dict()
# create an instance of FloatParameter from a dict
float_parameter_from_dict = FloatParameter.from_dict(float_parameter_dict)