| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[StopListCollection] | [optional] | |
| meta | StoplistSearchMeta | [optional] |
from bsg_api.models.stoplist_search200_response import StoplistSearch200Response
# TODO update the JSON string below
json = "{}"
# create an instance of StoplistSearch200Response from a JSON string
stoplist_search200_response_instance = StoplistSearch200Response.from_json(json)
# print the JSON string representation of the object
print(StoplistSearch200Response.to_json())
# convert the object into a dict
stoplist_search200_response_dict = stoplist_search200_response_instance.to_dict()
# create an instance of StoplistSearch200Response from a dict
stoplist_search200_response_from_dict = StoplistSearch200Response.from_dict(stoplist_search200_response_dict)