Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

MarketGeoJsonRoot.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

MarketGeoJsonRoot

Properties

Name Type Description Notes
type str [optional]
features List[Feature] [optional]
bbox object [optional]

Example

from data_bridges_client.models.market_geo_json_root import MarketGeoJsonRoot

# TODO update the JSON string below
json = "{}"
# create an instance of MarketGeoJsonRoot from a JSON string
market_geo_json_root_instance = MarketGeoJsonRoot.from_json(json)
# print the JSON string representation of the object
print(MarketGeoJsonRoot.to_json())

# convert the object into a dict
market_geo_json_root_dict = market_geo_json_root_instance.to_dict()
# create an instance of MarketGeoJsonRoot from a dict
market_geo_json_root_from_dict = MarketGeoJsonRoot.from_dict(market_geo_json_root_dict)

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