| Name | Type | Description | Notes |
|---|
from upstream_api_client.models.bbox import Bbox
# TODO update the JSON string below
json = "{}"
# create an instance of Bbox from a JSON string
bbox_instance = Bbox.from_json(json)
# print the JSON string representation of the object
print(Bbox.to_json())
# convert the object into a dict
bbox_dict = bbox_instance.to_dict()
# create an instance of Bbox from a dict
bbox_from_dict = Bbox.from_dict(bbox_dict)