| Name | Type | Description | Notes |
|---|---|---|---|
| byte_offset | int | ||
| byte_size | int |
from revengai.models.suggested_hole import SuggestedHole
# TODO update the JSON string below
json = "{}"
# create an instance of SuggestedHole from a JSON string
suggested_hole_instance = SuggestedHole.from_json(json)
# print the JSON string representation of the object
print(SuggestedHole.to_json())
# convert the object into a dict
suggested_hole_dict = suggested_hole_instance.to_dict()
# create an instance of SuggestedHole from a dict
suggested_hole_from_dict = SuggestedHole.from_dict(suggested_hole_dict)