Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.62 KB

File metadata and controls

42 lines (33 loc) · 1.62 KB

DefaultPipingBoolParameter

Properties

Name Type Description Notes
url str [readonly]
id int [readonly]
value bool [optional]
type PluginParameterType [readonly]
plugin_piping_id int [readonly]
plugin_piping_title str [readonly]
previous_plugin_piping_id int [readonly]
param_name str [readonly]
param_id int [readonly]
plugin_piping str [readonly]
plugin_name str [readonly]
plugin_version str [readonly]
plugin_id int [readonly]
plugin_param str [readonly]

Example

from aiochris_oag.models.default_piping_bool_parameter import DefaultPipingBoolParameter

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

# convert the object into a dict
default_piping_bool_parameter_dict = default_piping_bool_parameter_instance.to_dict()
# create an instance of DefaultPipingBoolParameter from a dict
default_piping_bool_parameter_from_dict = DefaultPipingBoolParameter.from_dict(default_piping_bool_parameter_dict)

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