Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

AlarmsQueryResult.md

File metadata and controls

33 lines (24 loc) · 1.26 KB

AlarmsQueryResult

Properties

Name Type Description Notes
var_self str Link to alarm query
alarms List[AlarmEntity]
total int Total number of alarms that fulfill the criteria
next str Link to the next page of results (if more results are available) [optional]
prev str Link to the previous page of result (if previous page is available) [optional]

Example

from waylay.services.alarms.models.alarms_query_result import AlarmsQueryResult

# TODO update the JSON string below
json = "{}"
# create an instance of AlarmsQueryResult from a JSON string
alarms_query_result_instance = AlarmsQueryResult.from_json(json)
# print the JSON string representation of the object
print AlarmsQueryResult.to_json()

# convert the object into a dict
alarms_query_result_dict = alarms_query_result_instance.to_dict()
# create an instance of AlarmsQueryResult from a dict
alarms_query_result_form_dict = alarms_query_result.from_dict(alarms_query_result_dict)

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