| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| data | GetDatastream200ResponseData | [optional] |
from sensorbucket.models.get_datastream200_response import GetDatastream200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetDatastream200Response from a JSON string
get_datastream200_response_instance = GetDatastream200Response.from_json(json)
# print the JSON string representation of the object
print(GetDatastream200Response.to_json())
# convert the object into a dict
get_datastream200_response_dict = get_datastream200_response_instance.to_dict()
# create an instance of GetDatastream200Response from a dict
get_datastream200_response_from_dict = GetDatastream200Response.from_dict(get_datastream200_response_dict)