Name | Type | Description | Notes |
---|---|---|---|
term_base | TermBaseDto | [optional] | |
concept_id | str | [optional] | |
source_term | TermDto | [optional] | |
translation_terms | List[TermDto] | [optional] |
from phrasetms_client.models.search_response_tb_dto import SearchResponseTbDto
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResponseTbDto from a JSON string
search_response_tb_dto_instance = SearchResponseTbDto.from_json(json)
# print the JSON string representation of the object
print SearchResponseTbDto.to_json()
# convert the object into a dict
search_response_tb_dto_dict = search_response_tb_dto_instance.to_dict()
# create an instance of SearchResponseTbDto from a dict
search_response_tb_dto_from_dict = SearchResponseTbDto.from_dict(search_response_tb_dto_dict)