GoodMem
ReferenceClient SDKsPython SDKModels

BoundingBox Model

BoundingBox Model documentation for Python SDK

Bounding box coordinates in page space.

Properties

NameTypeDescriptionNotes
x1floatLeft coordinate
y1floatTop coordinate
x2floatRight coordinate
y2floatBottom coordinate

Example

from goodmem_client.models.bounding_box import BoundingBox

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

# convert the object into a dict
bounding_box_dict = bounding_box_instance.to_dict()
# create an instance of BoundingBox from a dict
bounding_box_from_dict = BoundingBox.from_dict(bounding_box_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page