Name | Type | Description | Notes |
---|---|---|---|
term_base | TermBaseReference | [optional] | |
concept | ConceptDtov2 | [optional] | |
source_term | TermV2Dto | [optional] | |
translation_terms | List[TermV2Dto] | [optional] |
from phrasetms_client.models.search_tb_response_dto import SearchTbResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of SearchTbResponseDto from a JSON string
search_tb_response_dto_instance = SearchTbResponseDto.from_json(json)
# print the JSON string representation of the object
print SearchTbResponseDto.to_json()
# convert the object into a dict
search_tb_response_dto_dict = search_tb_response_dto_instance.to_dict()
# create an instance of SearchTbResponseDto from a dict
search_tb_response_dto_from_dict = SearchTbResponseDto.from_dict(search_tb_response_dto_dict)