| Name | Type | Description | Notes |
|---|---|---|---|
| start_line | int | ||
| end_line | int |
from revengai.models.context import Context
# TODO update the JSON string below
json = "{}"
# create an instance of Context from a JSON string
context_instance = Context.from_json(json)
# print the JSON string representation of the object
print(Context.to_json())
# convert the object into a dict
context_dict = context_instance.to_dict()
# create an instance of Context from a dict
context_from_dict = Context.from_dict(context_dict)