StreamByRegion defines an array of streams.
| Name | Type | Description | Notes |
|---|---|---|---|
| stream | List[str] | Array of streams. | [optional] |
from ibm_gdsc_sdk_saas.models.streamsv3_stream_by_region import Streamsv3StreamByRegion
# TODO update the JSON string below
json = "{}"
# create an instance of Streamsv3StreamByRegion from a JSON string
streamsv3_stream_by_region_instance = Streamsv3StreamByRegion.from_json(json)
# print the JSON string representation of the object
print(Streamsv3StreamByRegion.to_json())
# convert the object into a dict
streamsv3_stream_by_region_dict = streamsv3_stream_by_region_instance.to_dict()
# create an instance of Streamsv3StreamByRegion from a dict
streamsv3_stream_by_region_from_dict = Streamsv3StreamByRegion.from_dict(streamsv3_stream_by_region_dict)