Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

FloatParameter.md

File metadata and controls

35 lines (26 loc) · 1.13 KB

FloatParameter

Properties

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]

Example

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)

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