Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

PolygonReference

Reference to a polygon on a specific page.

Properties

Name Type Description Notes
page int The page number of the source document where the polygon is located.
polygon Polygon

Example

from ksapi.models.polygon_reference import PolygonReference

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

# convert the object into a dict
polygon_reference_dict = polygon_reference_instance.to_dict()
# create an instance of PolygonReference from a dict
polygon_reference_from_dict = PolygonReference.from_dict(polygon_reference_dict)

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