| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| is_analyzed | bool |
from ibm_gdsc_sdk_saas.models.analyzed_region import AnalyzedRegion
# TODO update the JSON string below
json = "{}"
# create an instance of AnalyzedRegion from a JSON string
analyzed_region_instance = AnalyzedRegion.from_json(json)
# print the JSON string representation of the object
print(AnalyzedRegion.to_json())
# convert the object into a dict
analyzed_region_dict = analyzed_region_instance.to_dict()
# create an instance of AnalyzedRegion from a dict
analyzed_region_from_dict = AnalyzedRegion.from_dict(analyzed_region_dict)