Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 988 Bytes

TermPairDto.md

File metadata and controls

28 lines (21 loc) · 988 Bytes

TermPairDto

Properties

Name Type Description Notes
source_term TermDto
target_term TermDto

Example

from phrasetms_client.models.term_pair_dto import TermPairDto

# TODO update the JSON string below
json = "{}"
# create an instance of TermPairDto from a JSON string
term_pair_dto_instance = TermPairDto.from_json(json)
# print the JSON string representation of the object
print TermPairDto.to_json()

# convert the object into a dict
term_pair_dto_dict = term_pair_dto_instance.to_dict()
# create an instance of TermPairDto from a dict
term_pair_dto_from_dict = TermPairDto.from_dict(term_pair_dto_dict)

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