Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 914 Bytes

File metadata and controls

30 lines (21 loc) · 914 Bytes

AnalyzedRegion

Properties

Name Type Description Notes
name str
is_analyzed bool

Example

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)

[Back to Model list] [Back to API list] [Back to README]