Name |
Type |
Description |
Notes |
from waylay.services.alarms.models.list_order_parameter import ListOrderParameter
# TODO update the JSON string below
json = "{}"
# create an instance of ListOrderParameter from a JSON string
list_order_parameter_instance = ListOrderParameter.from_json(json)
# print the JSON string representation of the object
print ListOrderParameter.to_json()
# convert the object into a dict
list_order_parameter_dict = list_order_parameter_instance.to_dict()
# create an instance of ListOrderParameter from a dict
list_order_parameter_form_dict = list_order_parameter.from_dict(list_order_parameter_dict)
[Back to Model list] [Back to API list] [Back to README]