Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 901 Bytes

File metadata and controls

28 lines (21 loc) · 901 Bytes

Position

Properties

Name Type Description Notes
begin_index int [optional]
end_index int [optional]

Example

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)

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