Properties
Example
from libica.openapi.v3.models.input_parameter_list import InputParameterList
# TODO update the JSON string below
json = "{}"
# create an instance of InputParameterList from a JSON string
input_parameter_list_instance = InputParameterList.from_json(json)
# print the JSON string representation of the object
print(InputParameterList.to_json())
# convert the object into a dict
input_parameter_list_dict = input_parameter_list_instance.to_dict()
# create an instance of InputParameterList from a dict
input_parameter_list_from_dict = InputParameterList.from_dict(input_parameter_list_dict)
[Back to Model list] [Back to API list] [Back to README]