Name | Type | Description | Notes |
---|---|---|---|
ids | List[str] |
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)