Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 872 Bytes

BulkQueryIds.md

File metadata and controls

29 lines (20 loc) · 872 Bytes

BulkQueryIds

Properties

Name Type Description Notes
ids List[str]

Example

from waylay.services.alarms.models.bulk_query_ids import BulkQueryIds

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

# convert the object into a dict
bulk_query_ids_dict = bulk_query_ids_instance.to_dict()
# create an instance of BulkQueryIds from a dict
bulk_query_ids_form_dict = bulk_query_ids.from_dict(bulk_query_ids_dict)

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