| Name | Type | Description | Notes |
|---|---|---|---|
| begin_index | int | [optional] | |
| end_index | int | [optional] |
from phrasetms_client.models.position import Position
# TODO update the JSON string below
json = "{}"
# create an instance of Position from a JSON string
position_instance = Position.from_json(json)
# print the JSON string representation of the object
print Position.to_json()
# convert the object into a dict
position_dict = position_instance.to_dict()
# create an instance of Position from a dict
position_from_dict = Position.from_dict(position_dict)