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