Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.41 KB

SearchTbResponseDto.md

File metadata and controls

30 lines (23 loc) · 1.41 KB

SearchTbResponseDto

Properties

Name Type Description Notes
term_base TermBaseReference [optional]
concept ConceptDtov2 [optional]
source_term TermV2Dto [optional]
translation_terms List[TermV2Dto] [optional]

Example

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)

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