Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

PathParameter.md

File metadata and controls

35 lines (26 loc) · 1.11 KB

PathParameter

Properties

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]

Example

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)

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