Name | Type | Description | Notes |
---|---|---|---|
begin_index | int | [optional] | |
text | str | [optional] |
from phrasetms_client.models.match import Match
# TODO update the JSON string below
json = "{}"
# create an instance of Match from a JSON string
match_instance = Match.from_json(json)
# print the JSON string representation of the object
print Match.to_json()
# convert the object into a dict
match_dict = match_instance.to_dict()
# create an instance of Match from a dict
match_from_dict = Match.from_dict(match_dict)