Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 920 Bytes

ListOrderParameter.md

File metadata and controls

28 lines (19 loc) · 920 Bytes

ListOrderParameter

Properties

Name Type Description Notes

Example

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]