Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 862 Bytes

Match.md

File metadata and controls

28 lines (21 loc) · 862 Bytes

Match

Properties

Name Type Description Notes
begin_index int [optional]
text str [optional]

Example

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)

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